Updated Dockerfile for flask app

Signed-off-by: Damanpreet Singh <daman.4880@gmail.com>
This commit is contained in:
Damanpreet Singh 2020-03-26 17:13:01 +05:30
parent 30038951cd
commit b3db208944
1 changed files with 1 additions and 0 deletions

View File

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