Spaces:
Sleeping
Sleeping
| FROM python:3.10-slim | |
| WORKDIR /app | |
| COPY requirements.txt . | |
| RUN pip install -r requirements.txt | |
| COPY . . | |
| # Hugging Face Space 必须监听 7860 端口 | |
| # 用 supervisor 同时跑 FastAPI(8008) + Gradio(7860) | |
| CMD ["supervisord", "-c", "supervisord.conf"] |