Spaces:
Sleeping
Sleeping
File size: 372 Bytes
6d934eb |
1 2 3 4 5 6 7 8 |
FROM python:3.11
WORKDIR /code
RUN chmod 777 /code
RUN python -m pip install --upgrade pip && \
pip install nest_asyncio google google-generativeai requests waitress flask[async] gradio_client flask-cors gunicorn gevent bs4 huggingface_hub
COPY . .
CMD ["gunicorn", "app:app", "--bind", "0.0.0.0:7860", "--timeout", "120", "--workers", "4", "--worker-class", "sync"] |