From 57f7537d35c0988bd0e74abbf16989557c1481ad Mon Sep 17 00:00:00 2001 From: Christopher Horrell Date: Tue, 20 Dec 2016 19:41:30 -0500 Subject: [PATCH] Update for Node.js v7.3.0 See: - https://nodejs.org/en/blog/release/v7.3.0/ --- .travis.yml | 2 +- {7.2 => 7.3}/Dockerfile | 2 +- {7.2 => 7.3}/alpine/Dockerfile | 2 +- {7.2 => 7.3}/onbuild/Dockerfile | 2 +- {7.2 => 7.3}/slim/Dockerfile | 2 +- {7.2 => 7.3}/wheezy/Dockerfile | 2 +- generate-stackbrew-library.sh | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) rename {7.2 => 7.3}/Dockerfile (98%) rename {7.2 => 7.3}/alpine/Dockerfile (98%) rename {7.2 => 7.3}/onbuild/Dockerfile (93%) rename {7.2 => 7.3}/slim/Dockerfile (98%) rename {7.2 => 7.3}/wheezy/Dockerfile (98%) diff --git a/.travis.yml b/.travis.yml index c2fb296f..1d96f5c0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,4 +11,4 @@ env: - NODE_VERSION: '0.12' - NODE_VERSION: '4.7' - NODE_VERSION: '6.9' - - NODE_VERSION: '7.2' + - NODE_VERSION: '7.3' diff --git a/7.2/Dockerfile b/7.3/Dockerfile similarity index 98% rename from 7.2/Dockerfile rename to 7.3/Dockerfile index f96acf2d..f50c4adc 100644 --- a/7.2/Dockerfile +++ b/7.3/Dockerfile @@ -19,7 +19,7 @@ RUN set -ex \ done ENV NPM_CONFIG_LOGLEVEL info -ENV NODE_VERSION 7.2.1 +ENV NODE_VERSION 7.3.0 RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \ && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \ diff --git a/7.2/alpine/Dockerfile b/7.3/alpine/Dockerfile similarity index 98% rename from 7.2/alpine/Dockerfile rename to 7.3/alpine/Dockerfile index 4b6d0f07..d0d6ba15 100644 --- a/7.2/alpine/Dockerfile +++ b/7.3/alpine/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:3.4 ENV NPM_CONFIG_LOGLEVEL info -ENV NODE_VERSION 7.2.1 +ENV NODE_VERSION 7.3.0 RUN adduser -D -u 1000 node \ && apk add --no-cache \ diff --git a/7.2/onbuild/Dockerfile b/7.3/onbuild/Dockerfile similarity index 93% rename from 7.2/onbuild/Dockerfile rename to 7.3/onbuild/Dockerfile index 98c4f8aa..b581e14d 100644 --- a/7.2/onbuild/Dockerfile +++ b/7.3/onbuild/Dockerfile @@ -1,4 +1,4 @@ -FROM node:7.2.1 +FROM node:7.3.0 RUN mkdir -p /usr/src/app WORKDIR /usr/src/app diff --git a/7.2/slim/Dockerfile b/7.3/slim/Dockerfile similarity index 98% rename from 7.2/slim/Dockerfile rename to 7.3/slim/Dockerfile index 0e86e79f..87be7da9 100644 --- a/7.2/slim/Dockerfile +++ b/7.3/slim/Dockerfile @@ -19,7 +19,7 @@ RUN set -ex \ done ENV NPM_CONFIG_LOGLEVEL info -ENV NODE_VERSION 7.2.1 +ENV NODE_VERSION 7.3.0 RUN buildDeps='xz-utils' \ && set -x \ diff --git a/7.2/wheezy/Dockerfile b/7.3/wheezy/Dockerfile similarity index 98% rename from 7.2/wheezy/Dockerfile rename to 7.3/wheezy/Dockerfile index 16f28f9d..eaa34282 100644 --- a/7.2/wheezy/Dockerfile +++ b/7.3/wheezy/Dockerfile @@ -19,7 +19,7 @@ RUN set -ex \ done ENV NPM_CONFIG_LOGLEVEL info -ENV NODE_VERSION 7.2.1 +ENV NODE_VERSION 7.3.0 RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \ && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \ diff --git a/generate-stackbrew-library.sh b/generate-stackbrew-library.sh index 4ebdf996..a0c4b90d 100755 --- a/generate-stackbrew-library.sh +++ b/generate-stackbrew-library.sh @@ -6,7 +6,7 @@ hash git 2>/dev/null || { echo >&2 "git not found, exiting."; } array_0_12='0'; array_4_7='4 argon'; array_6_9='6 boron'; -array_7_2='7 latest'; +array_7_3='7 latest'; cd $(cd ${0%/*} && pwd -P);