From 24c8c694ef0248a99bb293d3660c497111ce3f77 Mon Sep 17 00:00:00 2001 From: justine Date: Thu, 17 Mar 2022 01:31:38 +0100 Subject: [PATCH] Update 'src/Dockerfile' --- src/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Dockerfile b/src/Dockerfile index a8195d8..e784cff 100644 --- a/src/Dockerfile +++ b/src/Dockerfile @@ -6,5 +6,5 @@ RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt VOLUME ["/app/notes.pickle"] COPY . /app EXPOSE 8080 -ENV FLASK_APP=squipnotes +ENV FLASK_APP=app CMD [ "python", "-m" , "flask", "run", "--host=0.0.0.0", "--port=8080" ]