diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c99821e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM python:3.11-alpine + +WORKDIR /reminder-docker + +COPY requirements.txt requirements.txt +RUN pip3 install -r requirements.txt + +COPY . . + +CMD ["gunicorn", "-w 4", "-b", "0.0.0.0:8000", "app:create_app()"]