From f2b5e896499bc17dc5330160b23c2252c7b76bad Mon Sep 17 00:00:00 2001 From: Andreas Balogh Date: Tue, 16 Feb 2021 21:39:58 +0100 Subject: [PATCH] corrected cmd order --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b11c7f5..41fad53 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \ No newline at end of file