lalithadevi's picture
Update Dockerfile
87a08f4 verified
raw
history blame
239 Bytes
FROM python:3.11-slim
WORKDIR /webapp
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["gunicorn", "-b", "0.0.0.0:7860", "--timeout", "120", "--workers=1", "--threads=1", "--worker-connections=1000", "app:app"]
EXPOSE 7860