👷 add Dockerfile, now really...

This commit is contained in:
Finn Christiansen 2023-11-07 22:08:02 +01:00
parent 36c062d46c
commit bdf0f71916

10
Dockerfile Normal file
View file

@ -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()"]