File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,8 @@ LABEL org.opencontainers.image.source https://github.com/stashed/elasticsearch
35
35
RUN set -x \
36
36
&& apk add --update --no-cache bash ca-certificates curl
37
37
38
- RUN npm install elasticdump@6.62.1 -g
38
+ RUN npm config set unsafe-perm true \
39
+ && npm install elasticdump@6.62.1 -g
39
40
40
41
COPY --from=0 restic /bin/restic
41
42
COPY bin/{ARG_OS}_{ARG_ARCH}/{ARG_BIN} /{ARG_BIN}
Original file line number Diff line number Diff line change @@ -35,7 +35,8 @@ LABEL org.opencontainers.image.source https://github.com/stashed/elasticsearch
35
35
RUN set -x \
36
36
&& apk add --update --no-cache bash ca-certificates curl
37
37
38
- RUN npm install elasticdump@6.62.1 -g
38
+ RUN npm config set unsafe-perm true \
39
+ && npm install elasticdump@6.62.1 -g
39
40
40
41
COPY --from=0 /restic /bin/restic
41
42
COPY bin/{ARG_OS}_{ARG_ARCH}/{ARG_BIN} /{ARG_BIN}
Original file line number Diff line number Diff line change @@ -64,8 +64,8 @@ BIN_PLATFORMS := $(DOCKER_PLATFORMS)
64
64
OS := $(if $(GOOS ) ,$(GOOS ) ,$(shell go env GOOS) )
65
65
ARCH := $(if $(GOARCH ) ,$(GOARCH ) ,$(shell go env GOARCH) )
66
66
67
- BASEIMAGE_PROD ?= node:8.16 -alpine
68
- BASEIMAGE_DBG ?= node:8.16 -alpine
67
+ BASEIMAGE_PROD ?= node:14 -alpine
68
+ BASEIMAGE_DBG ?= node:14 -alpine
69
69
70
70
IMAGE := $(REGISTRY ) /$(BIN )
71
71
VERSION_PROD := $(VERSION )
You can’t perform that action at this time.
0 commit comments