Spaces:
Runtime error
Runtime error
File size: 325 Bytes
2e346a4 ff27398 2e346a4 ff27398 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Hugging Face Spaces use port 7860 by default
EXPOSE 7860
CMD ["gunicorn", "app:app", "--workers", "1", "--worker-class", "uvicorn.workers.UvicornWorker", "--bind", "0.0.0.0:7860", "--timeout", "300"] |