Spaces:
Running
Running
| FROM python:3.11-slim | |
| # cache-bust: 2026-03-31T03:27:52Z | |
| WORKDIR /app | |
| RUN pip install uv --quiet --no-cache-dir | |
| COPY requirements.txt . | |
| RUN uv pip install --system --no-cache -r requirements.txt | |
| COPY . . | |
| EXPOSE 7860 | |
| CMD ["python", "app.py"] | |