Merge pull request #37 from fumblehool/flask-app-fix

Updated Dockerfile for flask app
This commit is contained in:
Guillaume LOURS 2020-03-26 14:25:05 +01:00 committed by GitHub
commit 60d2d2a8da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"]