diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..5e72b99 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM python:3.9.1 + +COPY . /app + +ENV FLASK_APP=autoapp.py + +RUN pip install -r /app/requirements/dev.txt + +CMD python /app/autoapp.py \ No newline at end of file