LifeOS-Trainer / Dockerfile
SParsh003's picture
Upload Dockerfile with huggingface_hub
441713e verified
raw
history blame contribute delete
270 Bytes
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"]