llama-code-trainer / Dockerfile
Walter Onyango
fix: add sentencepiece for llama tokenizer
bf5466a verified
Raw
History Blame Contribute Delete
139 Bytes
FROM python:3.10
WORKDIR /app
COPY . .
RUN pip install --upgrade pip \
&& pip install -r requirements.txt
CMD ["python", "train.py"]