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

RUN pip install --upgrade pip setuptools wheel
RUN pip install torch transformers datasets deepspeed vllm accelerate unsloth
RUN pip install huggingface_hub

WORKDIR /app
COPY . /app

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