Spaces:
Paused
Paused
| FROM python:3.11-slim | |
| WORKDIR /app | |
| COPY requirements.txt . | |
| COPY pyproject.toml . | |
| RUN pip install uv | |
| RUN uv pip install --no-cache-dir -r requirements.txt --system | |
| RUN apt-get update && apt-get install -y libmagic1 | |
| COPY . . | |
| ENV PORT=8000 | |
| CMD uvicorn main:app --host 0.0.0.0 --port $PORT | |