lalithadevi's picture
Update Dockerfile
413097a verified
raw history blame
No virus
216 Bytes
FROM python:3.9-slim
WORKDIR /webapp
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["gunicorn", "app:app", "--timeout", "120", "--workers=3", "--threads=3", "--worker-connections=1000"]
EXPOSE 7860