Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -5,7 +5,7 @@ USER root
|
|
5 |
ARG CONFIG="config.json"
|
6 |
|
7 |
RUN tmp=$(mktemp) \
|
8 |
-
jq '.init =
|
9 |
RUN python -u prep.py
|
10 |
|
11 |
CMD ["python", "train.py"]
|
|
|
5 |
ARG CONFIG="config.json"
|
6 |
|
7 |
RUN tmp=$(mktemp) \
|
8 |
+
jq '.init = 1' ${CONFIG} > "$tmp" && mv "$tmp" ${CONFIG}
|
9 |
RUN python -u prep.py
|
10 |
|
11 |
CMD ["python", "train.py"]
|