video_downloader_service/web.Dockerfile
2023-11-29 16:15:48 +03:00

13 lines
174 B
Docker

FROM python:3.11.4
WORKDIR /app
COPY poetry.lock pyproject.toml /app/
RUN pip install poetry
RUN poetry install --no-root
COPY .. /app
CMD poetry run python main_web.py