Skip to content

Commit 3ffba88

Browse files
Update nodejs 4.8 to v4.8.4
1 parent bb200ca commit 3ffba88

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

4.8/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN set -ex \
2121
done
2222

2323
ENV NPM_CONFIG_LOGLEVEL info
24-
ENV NODE_VERSION 4.8.3
24+
ENV NODE_VERSION 4.8.4
2525

2626
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
2727
&& curl -SLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \

4.8/alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM alpine:3.4
22

33
ENV NPM_CONFIG_LOGLEVEL info
4-
ENV NODE_VERSION 4.8.3
4+
ENV NODE_VERSION 4.8.4
55

66
RUN addgroup -g 1000 node \
77
&& adduser -u 1000 -G node -s /bin/sh -D node \

4.8/onbuild/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM node:4.8.3
1+
FROM node:4.8.4
22

33
RUN mkdir -p /usr/src/app
44
WORKDIR /usr/src/app
55

66
ONBUILD ARG NODE_ENV
77
ONBUILD ENV NODE_ENV $NODE_ENV
88
ONBUILD COPY package.json /usr/src/app/
9-
ONBUILD RUN npm install && npm cache clean
9+
ONBUILD RUN npm install && npm cache clean --force
1010
ONBUILD COPY . /usr/src/app
1111

1212
CMD [ "npm", "start" ]

4.8/slim/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN set -ex \
2121
done
2222

2323
ENV NPM_CONFIG_LOGLEVEL info
24-
ENV NODE_VERSION 4.8.3
24+
ENV NODE_VERSION 4.8.4
2525

2626
RUN buildDeps='xz-utils' \
2727
&& set -x \

4.8/wheezy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN set -ex \
2121
done
2222

2323
ENV NPM_CONFIG_LOGLEVEL info
24-
ENV NODE_VERSION 4.8.3
24+
ENV NODE_VERSION 4.8.4
2525

2626
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
2727
&& curl -SLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \

0 commit comments

Comments
 (0)