train-llama / Dockerfile
nroggendorff's picture
Update Dockerfile
3b8f314 verified
raw
history blame
284 Bytes
FROM nroggendorff/train-llama:latest
ARG CONFIG="config.json"
RUN tmp=$(mktemp) && \
jq '.init = 1 | ."instruct-finetune-bool" = false' "${CONFIG}" > "$tmp" && \
mv "$tmp" "${CONFIG}"
RUN chown -R user:user config.json
CMD ["bash", "-c", "python prep.py && python train.py"]