corrected cmd order

This commit is contained in:
Andreas Balogh
2021-02-16 21:39:58 +01:00
parent 40d707c397
commit f2b5e89649

View File

@@ -1,6 +1,6 @@
FROM python:3.9-slim
RUN pip install -r requirements.txt
COPY . .
RUN pip install -r requirements.txt
ENV FLASK_APP=flaskr/hello
EXPOSE 5000
ENTRYPOINT python3 -m flask run --host=0.0.0.0