Spaces:
Sleeping
Sleeping
| FROM pytorch/pytorch:2.2.0-cuda12.1-cudnn8-runtime | |
| ENV PYTHONUNBUFFERED=1 | |
| RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/* | |
| WORKDIR /app | |
| COPY runner.py /app/runner.py | |
| RUN pip install huggingface_hub | |
| CMD ["python", "runner.py"] | |