diff --git a/.travis.yml b/.travis.yml index 3d56a24eca..c6cfb4acd4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ sudo: required services: - docker - + script: - ./test-build.sh $NODE_VERSION @@ -10,4 +10,4 @@ env: matrix : - NODE_VERSION: '4.8' - NODE_VERSION: '6.10' - - NODE_VERSION: '7.8' + - NODE_VERSION: '7.9' diff --git a/7.8/Dockerfile b/7.9/Dockerfile similarity index 98% rename from 7.8/Dockerfile rename to 7.9/Dockerfile index fcb72486ca..7e81bcb623 100644 --- a/7.8/Dockerfile +++ b/7.9/Dockerfile @@ -21,7 +21,7 @@ RUN set -ex \ done ENV NPM_CONFIG_LOGLEVEL info -ENV NODE_VERSION 7.8.0 +ENV NODE_VERSION 7.9.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.8/alpine/Dockerfile b/7.9/alpine/Dockerfile similarity index 99% rename from 7.8/alpine/Dockerfile rename to 7.9/alpine/Dockerfile index 2c8cde4bf7..faeb8d7244 100644 --- a/7.8/alpine/Dockerfile +++ b/7.9/alpine/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:3.4 ENV NPM_CONFIG_LOGLEVEL info -ENV NODE_VERSION 7.8.0 +ENV NODE_VERSION 7.9.0 RUN addgroup -g 1000 node \ && adduser -u 1000 -G node -s /bin/sh -D node \ diff --git a/7.8/onbuild/Dockerfile b/7.9/onbuild/Dockerfile similarity index 93% rename from 7.8/onbuild/Dockerfile rename to 7.9/onbuild/Dockerfile index d825717672..f8ededcf38 100644 --- a/7.8/onbuild/Dockerfile +++ b/7.9/onbuild/Dockerfile @@ -1,4 +1,4 @@ -FROM node:7.8.0 +FROM node:7.9.0 RUN mkdir -p /usr/src/app WORKDIR /usr/src/app diff --git a/7.8/slim/Dockerfile b/7.9/slim/Dockerfile similarity index 99% rename from 7.8/slim/Dockerfile rename to 7.9/slim/Dockerfile index a2b436c1cb..bea98ecad4 100644 --- a/7.8/slim/Dockerfile +++ b/7.9/slim/Dockerfile @@ -21,7 +21,7 @@ RUN set -ex \ done ENV NPM_CONFIG_LOGLEVEL info -ENV NODE_VERSION 7.8.0 +ENV NODE_VERSION 7.9.0 RUN buildDeps='xz-utils' \ && set -x \ diff --git a/7.8/wheezy/Dockerfile b/7.9/wheezy/Dockerfile similarity index 98% rename from 7.8/wheezy/Dockerfile rename to 7.9/wheezy/Dockerfile index 8eb091bcd7..ffd67124bd 100644 --- a/7.8/wheezy/Dockerfile +++ b/7.9/wheezy/Dockerfile @@ -21,7 +21,7 @@ RUN set -ex \ done ENV NPM_CONFIG_LOGLEVEL info -ENV NODE_VERSION 7.8.0 +ENV NODE_VERSION 7.9.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 39da6fb63d..440a13462f 100755 --- a/generate-stackbrew-library.sh +++ b/generate-stackbrew-library.sh @@ -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_8='7 latest'; +array_7_9='7 latest'; cd $(cd ${0%/*} && pwd -P);