File size: 238 Bytes
9919dd1
 
 
 
107add4
413097a
1
2
3
4
5
6
7
FROM python:3.9-slim
WORKDIR /webapp
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["gunicorn", "-b", "0.0.0.0:7860", "--timeout", "120", "--workers=3", "--threads=3", "--worker-connections=1000", "app:app"]
EXPOSE 7860