This commit is contained in:
filimonov
2024-02-20 16:43:56 +07:00
parent f79efa2951
commit a086f94798
28 changed files with 1469 additions and 144 deletions

View File

@@ -7,7 +7,7 @@ WORKDIR /app
COPY requirements.txt requirements.txt
RUN python3 -m venv .venv
RUN /app/.venv/bin/pip3 install -r /app/requirements.txt
ADD app.py /app
ADD *.py /app
EXPOSE 5000
CMD [".venv/bin/python3", "app.py"]