diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7206943 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM python:3.7.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