Spaces:
Sleeping
Sleeping
| FROM python:3.10-slim | |
| WORKDIR /app | |
| COPY . /app | |
| RUN apt-get update \ | |
| && apt-get install -y --no-install-recommends git \ | |
| && rm -rf /var/lib/apt/lists/* | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Expose port for HF Spaces | |
| EXPOSE 7860 | |
| CMD uvicorn releaseops_arena.server:app --host 0.0.0.0 --port ${PORT:-7860} | |