Spaces:
Running
Running
| FROM python:3.11-slim | |
| WORKDIR /app | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| git \ | |
| && rm -rf /var/lib/apt/lists/* | |
| COPY server/requirements.txt server/requirements.txt | |
| RUN pip install --no-cache-dir -r server/requirements.txt huggingface_hub | |
| COPY . . | |
| RUN chmod +x start.sh | |
| CMD ["bash", "start.sh"] |