9 строки
112 B
Docker
9 строки
112 B
Docker
FROM python:3.11-slim
|
|
|
|
COPY . /my_app
|
|
|
|
WORKDIR /my_app
|
|
|
|
RUN pip install tqdm
|
|
|
|
ENTRYPOINT [ "python", "main.py" ] |