add flask sample

Signed-off-by: kouul <maulloohans@gmail.com>
This commit is contained in:
kouul
2020-03-26 08:41:17 +04:00
parent 56b4dc0cf9
commit 83a24f681f
5 changed files with 78 additions and 0 deletions

6
flask/app/Dockerfile Normal file
View File

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