Skip to content

Commit

Permalink
Add Node.js v8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed May 31, 2017
1 parent c0c75d6 commit 20f3de9
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ env:
matrix :
- NODE_VERSION: '4.8'
- NODE_VERSION: '6.10'
- NODE_VERSION: '7.10'
- NODE_VERSION: '8.0'
2 changes: 1 addition & 1 deletion 7.10/Dockerfile → 8.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN set -ex \
done

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 7.10.0
ENV NODE_VERSION 8.0.0

RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
&& curl -SLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
Expand Down
2 changes: 1 addition & 1 deletion 7.10/alpine/Dockerfile → 8.0/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM alpine:3.4

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 7.10.0
ENV NODE_VERSION 8.0.0

RUN addgroup -g 1000 node \
&& adduser -u 1000 -G node -s /bin/sh -D node \
Expand Down
2 changes: 1 addition & 1 deletion 7.10/onbuild/Dockerfile → 8.0/onbuild/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:7.10.0
FROM node:8.0.0

This comment has been minimized.

Copy link
@analytically

analytically Jun 6, 2017

you'll need to do npm cache clean --force

This comment has been minimized.

Copy link
@SimenB

SimenB Jun 6, 2017

Author Member

what?

This comment has been minimized.

Copy link
@LaurentGoderre

LaurentGoderre Jun 6, 2017

Member

This is being tracked in #419


RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
Expand Down
2 changes: 1 addition & 1 deletion 7.10/slim/Dockerfile → 8.0/slim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN set -ex \
done

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 7.10.0
ENV NODE_VERSION 8.0.0

RUN buildDeps='xz-utils' \
&& set -x \
Expand Down
2 changes: 1 addition & 1 deletion 7.10/wheezy/Dockerfile → 8.0/wheezy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN set -ex \
done

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 7.10.0
ENV NODE_VERSION 8.0.0

RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
&& curl -SLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
Expand Down
2 changes: 1 addition & 1 deletion generate-stackbrew-library.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ hash git 2>/dev/null || { echo >&2 "git not found, exiting."; }

array_4_8='4 argon';
array_6_10='6 boron';
array_7_10='7 latest';
array_8_0='8 latest';

cd $(cd ${0%/*} && pwd -P);

Expand Down

0 comments on commit 20f3de9

Please sign in to comment.