From 95f069b532e0a677d5245eaa2ff773407505ea36 Mon Sep 17 00:00:00 2001 From: shootylife Date: Sat, 16 Jan 2021 15:00:32 +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..0e8d43b --- /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 \ No newline at end of file