Spaces:
Runtime error
Runtime error
| FROM python:3.13.5-slim | |
| WORKDIR /app | |
| RUN apt-get update && apt-get install -y \ | |
| build-essential \ | |
| curl \ | |
| git \ | |
| && rm -rf /var/lib/apt/lists/* | |
| COPY requirements.txt ./ | |
| RUN pip3 install -r requirements.txt | |
| RUN pip3 install git+https://github.com/Smilyai-labs/Hyperspeed.git | |
| # Copy app | |
| COPY app.py . | |
| # Expose Gradio port | |
| EXPOSE 7860 | |
| # Run app | |
| CMD ["python", "app.py"] |