From a4dc562e7a16d197853dc1418a37d65f2710c215 Mon Sep 17 00:00:00 2001 From: Nicolas Droissart Date: Mon, 18 Jan 2021 19:10:39 +0100 Subject: [PATCH] :wrench: add Dockerfile --- Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e0fafa8 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM python:3.9.1 + +COPY . /app +WORKDIR /app + +ENV FLASK_APP=autoapp.py + +RUN pip install -r requirements/dev.txt + +EXPOSE 8000 + + +CMD python autoapp.py