Spaces:
Running
Running
| FROM python:3.10-slim | |
| WORKDIR /app | |
| COPY requirements.txt . | |
| RUN pip install --upgrade pip | |
| # CPU torch | |
| RUN pip install torch --index-url https://download.pytorch.org/whl/cpu | |
| RUN pip install -r requirements.txt | |
| COPY main.py . | |
| CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] | |