👷 add Dockerfile, now really...
This commit is contained in:
parent
36c062d46c
commit
bdf0f71916
1 changed files with 10 additions and 0 deletions
10
Dockerfile
Normal file
10
Dockerfile
Normal 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()"]
|
Loading…
Reference in a new issue