Spaces:
Sleeping
Sleeping
| FROM python:3.11-slim | |
| WORKDIR /app | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| COPY models.py . | |
| COPY openenv_stubs.py . | |
| COPY llm_triage.py . | |
| COPY inference.py . | |
| COPY server/ ./server/ | |
| ENV PYTHONPATH=/app | |
| ENV PORT=7860 | |
| CMD uvicorn server.app:app --host 0.0.0.0 --port ${PORT} | |