Spaces:
Running
on
Zero
Running
on
Zero
| FROM python:3.10-slim | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt && \ | |
| pip install --no-cache-dir gradio==5.29.0 "uvicorn>=0.14.0" spaces | |
| COPY . . | |
| CMD ["python", "app.py"] |