File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ FROM alpine:3.4
33ENV NPM_CONFIG_LOGLEVEL info
44ENV NODE_VERSION 4.8.1
55
6- RUN adduser -D -u 1000 node \
6+ RUN addgroup -g 1000 node \
7+ && adduser -u 1000 -G node -s /bin/sh -D node \
78 && apk add --no-cache \
89 libstdc++ \
910 && apk add --no-cache --virtual .build-deps \
Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ FROM alpine:3.4
33ENV NPM_CONFIG_LOGLEVEL info
44ENV NODE_VERSION 6.10.1
55
6- RUN adduser -D -u 1000 node \
6+ RUN addgroup -g 1000 node \
7+ && adduser -u 1000 -G node -s /bin/sh -D node \
78 && apk add --no-cache \
89 libstdc++ \
910 && apk add --no-cache --virtual .build-deps \
Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ FROM alpine:3.4
33ENV NPM_CONFIG_LOGLEVEL info
44ENV NODE_VERSION 7.7.4
55
6- RUN adduser -D -u 1000 node \
6+ RUN addgroup -g 1000 node \
7+ && adduser -u 1000 -G node -s /bin/sh -D node \
78 && apk add --no-cache \
89 libstdc++ \
910 && apk add --no-cache --virtual .build-deps \
You can’t perform that action at this time.
0 commit comments