File size: 249 Bytes
3295edd
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
FROM python:3.10.10

WORKDIR /home/app

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

COPY . /home/app

CMD gunicorn app:app  --bind 0.0.0.0:$PORT --worker-class uvicorn.workers.UvicornWorker