File size: 185 Bytes
2df1810
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
FROM python:3.8-slim

RUN pip install torch transformers datasets deepspeed vllm accelerate unsloth
RUN pip install huggingface_hub

WORKDIR /app
COPY . /app

CMD ["python", "train.py"]