add flask sample
Signed-off-by: kouul <maulloohans@gmail.com>
This commit is contained in:
parent
56b4dc0cf9
commit
83a24f681f
5 changed files with 78 additions and 0 deletions
6
flask/app/Dockerfile
Normal file
6
flask/app/Dockerfile
Normal 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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue