File size: 156 Bytes
8b5d4bb
 
 
 
 
f68db9f
1
2
3
4
5
6
7
FROM python:3.9-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860", "app:app"]