From 157a26cc8a6e3f5cf10b8c946c5afde8fb8b6997 Mon Sep 17 00:00:00 2001 From: Francois Lannoy Date: Wed, 6 Jan 2021 22:34:21 +0100 Subject: [PATCH] :whale: added Dockerfile --- Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7206943 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +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