diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..42ac3bd --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM python:3 + +ADD . /app/ + +WORKDIR /app + +RUN pip install -e . +RUN pip install waitress + +CMD ["waitress-serve", "--call", "flaskr:create_app"]