File size: 270 Bytes
cc0df41
 
 
04b2905
 
cc0df41
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13

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"]