This commit is contained in:
2025-05-18 19:49:15 +00:00
commit 0ef85f174d
5 changed files with 114 additions and 0 deletions

7
dockerfile Executable file
View File

@@ -0,0 +1,7 @@
FROM tiangolo/meinheld-gunicorn-flask:python3.9
COPY ./requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
COPY ./app /app