trainSpace / Dockerfile
hirushanirmal301
Add application file
2df1810
raw
history blame
185 Bytes
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"]