Spaces:
Runtime error
Runtime error
| FROM python:3.11-slim-bookworm | |
| RUN apt-get update && apt-get install -y \ | |
| curl git nodejs npm \ | |
| && rm -rf /var/lib/apt/lists/* | |
| RUN pip3 install --break-system-packages \ | |
| requests huggingface_hub | |
| WORKDIR /app | |
| COPY . . | |
| RUN chmod +x start.sh | |
| EXPOSE 7860 | |
| CMD ["/app/start.sh"] | |