From 3c2043a44dae33c06057fead7b2592727185c4be Mon Sep 17 00:00:00 2001 From: Gautier couture <2017566295@lacatholille.fr> Date: Tue, 12 Jan 2021 15:39:45 +0100 Subject: [PATCH] add Dockerfile :whale: --- Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..fb71c6d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM python:3.9 + +WORKDIR /app +COPY . . + +ENV FLASK_APP=autoapp.py + +RUN pip install -r requirements/dev.txt + + +EXPOSE 8000 +CMD python autoapp.py \ No newline at end of file