Spaces:
Configuration error
Configuration error
| FROM python:3.11-slim | |
| WORKDIR /app | |
| RUN apt-get update && apt-get install -y \ | |
| curl \ | |
| git \ | |
| ffmpeg \ | |
| && rm -rf /var/lib/apt/lists/* | |
| COPY . . | |
| RUN pip install uv | |
| RUN uv pip install --system -e ".[all]" | |
| EXPOSE 7860 | |
| CMD ["hermes"] |