File size: 230 Bytes
cf2a013
 
 
 
 
 
 
 
 
f594d54
1
2
3
4
5
6
7
8
9
10
11
FROM python:3.9-slim-buster

WORKDIR /app

COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt

COPY . .

CMD ["gunicorn", "--log-level", "debug", "-k", "gevent", "-w", "4", "-b", "0.0.0.0:8000", "app:app"]