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"]