1
0
Fork 0
mirror of https://github.com/docker/awesome-compose.git synced 2025-04-19 07:18:06 +02:00

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

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