From 48e5e8c6618cd1eb7d3cdf0e524b5a8ec744fe68 Mon Sep 17 00:00:00 2001 From: lamya-rey Date: Sun, 17 Jan 2021 23:13:11 +0100 Subject: [PATCH] :wrench: add Dockerfile --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e8ec6bd --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM python:3.9.1 + +WORKDIR /app + +COPY . /app + +ENV FLASK_APP=autoapp.py + +RUN pip install -r requirements/dev.txt + +CMD python autoapp.py \ No newline at end of file