Restored single service Flask project

Signed-off-by: Ajeet Singh Raina <ajeetraina@gmail.com>
This commit is contained in:
ajeetraina
2022-03-13 16:58:41 +05:30
parent 9e7d3a5d9f
commit ed24220ace
373 changed files with 79 additions and 64210 deletions

7
flask/app/Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM python:3.7-alpine
WORKDIR /app
COPY requirements.txt /app
RUN pip3 install -r requirements.txt --no-cache-dir
COPY . /app
ENTRYPOINT ["python3"]
CMD ["app.py"]