| FROM python:3.11-slim | |
| ENV PYTHONUNBUFFERED=1 \ | |
| PIP_NO_CACHE_DIR=1 \ | |
| PIP_DISABLE_PIP_VERSION_CHECK=1 | |
| WORKDIR /app | |
| COPY requirements.txt /app/ | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| COPY opensleuth_env /app/opensleuth_env | |
| COPY server.py /app/ | |
| EXPOSE 7860 | |
| # HF Spaces require listening on $PORT (default 7860). uvicorn binds 0.0.0.0. | |
| CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "7860"] | |