nroggendorff commited on
Commit
7ba5af5
·
verified ·
1 Parent(s): 3d2f907

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -5,9 +5,9 @@ USER root
5
  ARG CONFIG="config.json"
6
 
7
  RUN tmp=$(mktemp) && \
8
- jq '.init = 1' "${CONFIG}" > "$tmp" && \
9
  mv "$tmp" "${CONFIG}"
10
- RUN chown -R user:user /app
11
 
12
  RUN python -u prep.py
13
 
 
5
  ARG CONFIG="config.json"
6
 
7
  RUN tmp=$(mktemp) && \
8
+ jq '.init = 1 | .instruct-finetune-bool = false' "${CONFIG}" > "$tmp" && \
9
  mv "$tmp" "${CONFIG}"
10
+ RUN chown -R user:user config.json
11
 
12
  RUN python -u prep.py
13