Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- 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
|
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 |
|