From bb787f481fcb7f152d562c02508ec0476417ce7c Mon Sep 17 00:00:00 2001 From: Straw-Etiam Date: Wed, 13 Jan 2021 21:01:22 +0100 Subject: [PATCH] :heavy_plus_sign: 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