File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,8 @@ FROM {ARG_FROM}
36
36
RUN set -x \
37
37
&& apk add --update --no-cache bash ca-certificates curl
38
38
39
- RUN npm install elasticdump@4.1.2 -g
39
+ RUN npm config set unsafe-perm true \
40
+ && npm install elasticdump@4.1.2 -g
40
41
41
42
COPY --from=0 restic_{NEW_RESTIC_VER} /bin/restic_{NEW_RESTIC_VER}
42
43
COPY bin/{ARG_OS}_{ARG_ARCH}/{ARG_BIN} /{ARG_BIN}
Original file line number Diff line number Diff line change @@ -36,7 +36,8 @@ FROM {ARG_FROM}
36
36
RUN set -x \
37
37
&& apk add --update --no-cache bash ca-certificates curl
38
38
39
- RUN npm install elasticdump@4.1.2 -g
39
+ RUN npm config set unsafe-perm true \
40
+ && npm install elasticdump@4.1.2 -g
40
41
41
42
COPY --from=0 /restic_{NEW_RESTIC_VER} /bin/restic_{NEW_RESTIC_VER}
42
43
COPY bin/{ARG_OS}_{ARG_ARCH}/{ARG_BIN} /{ARG_BIN}
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ parse_url() {
35
35
36
36
RELEASE_TRACKER=
37
37
38
- while IFS=$' : \t ' read -r -u9 marker v; do
38
+ while IFS=$' : \r\ t ' read -r -u9 marker v; do
39
39
case $marker in
40
40
Release-tracker)
41
41
export RELEASE_TRACKER=$v
You can’t perform that action at this time.
0 commit comments