refactored docker-compose

This commit is contained in:
2023-11-28 16:29:22 +03:00
parent 2bf35852cd
commit 3e417e578c
6 changed files with 80 additions and 9 deletions

13
web.Dockerfile Normal file
View File

@ -0,0 +1,13 @@
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