From 4ae0d92c79f64d4e1aaf2dd97abb96b4bba8848b Mon Sep 17 00:00:00 2001 From: Neel-Leo Coffin Date: Thu, 14 Jan 2021 17:58:10 +0100 Subject: [PATCH] :construction_worker: changing dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e2afbd8..d2d74d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM python:3.9.1 -COPY . /app +FROM python:3.7.9 WORKDIR /app +COPY . . ENV FLASK_APP=autoapp.py RUN pip install -r requirements/dev.txt EXPOSE 8000 -CMD python autoapp.py \ No newline at end of file +CMD python autoapp.py \ No newline at end of file