From f6a53fc3ad9f0364787d3e54a1ed4b6623ce736d Mon Sep 17 00:00:00 2001 From: MTLantoine Date: Sat, 16 Jan 2021 16:13:28 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=EF=B8=8F=20dockerfile=20added?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 0 Dockerfile | 11 +++++++++++ 2 files changed, 11 insertions(+) create mode 100644 .circleci/config.yml create mode 100644 Dockerfile diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..e69de29 diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8b66611 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM python:3.9.1 + +COPY . /app + +WORKDIR /app + +RUN pip install -r requirements/dev.txt + +ENV FLASK_APP=autoapp.py + +CMD python autoapp.py \ No newline at end of file