File size: 256 Bytes
906e104
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.12-slim

WORKDIR /app

# Copy the entire project
COPY . /app/

# Install requirements
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install huggingface_hub>=0.20.0

# Run our wrapper script
CMD ["python", "scripts/hf_runner.py"]