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