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

Updated Dockerfile for flask app
pull/38/head
Guillaume LOURS 4 years ago committed by GitHub
commit 60d2d2a8da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      flask/app/Dockerfile

@ -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"]

Loading…
Cancel
Save