File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ FROM alpine:3.4
3
3
ENV NPM_CONFIG_LOGLEVEL info
4
4
ENV NODE_VERSION 4.8.1
5
5
6
- RUN adduser -D -u 1000 node \
6
+ RUN addgroup -g 1000 node \
7
+ && adduser -u 1000 -G node -s /bin/sh -D node \
7
8
&& apk add --no-cache \
8
9
libstdc++ \
9
10
&& 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
3
3
ENV NPM_CONFIG_LOGLEVEL info
4
4
ENV NODE_VERSION 6.10.1
5
5
6
- RUN adduser -D -u 1000 node \
6
+ RUN addgroup -g 1000 node \
7
+ && adduser -u 1000 -G node -s /bin/sh -D node \
7
8
&& apk add --no-cache \
8
9
libstdc++ \
9
10
&& 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
3
3
ENV NPM_CONFIG_LOGLEVEL info
4
4
ENV NODE_VERSION 7.7.4
5
5
6
- RUN adduser -D -u 1000 node \
6
+ RUN addgroup -g 1000 node \
7
+ && adduser -u 1000 -G node -s /bin/sh -D node \
7
8
&& apk add --no-cache \
8
9
libstdc++ \
9
10
&& apk add --no-cache --virtual .build-deps \
You can’t perform that action at this time.
0 commit comments