diff --git a/.travis.yml b/.travis.yml index 278a2c5d..677d33e6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,4 +10,4 @@ env: matrix : - NODE_VERSION: '4.8' - NODE_VERSION: '6.10' - - NODE_VERSION: '7.10' + - NODE_VERSION: '8.0' diff --git a/7.10/Dockerfile b/8.0/Dockerfile similarity index 98% rename from 7.10/Dockerfile rename to 8.0/Dockerfile index 5e7e0a0a..06acbc1a 100644 --- a/7.10/Dockerfile +++ b/8.0/Dockerfile @@ -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" \ diff --git a/7.10/alpine/Dockerfile b/8.0/alpine/Dockerfile similarity index 99% rename from 7.10/alpine/Dockerfile rename to 8.0/alpine/Dockerfile index 676dd9de..11bbc316 100644 --- a/7.10/alpine/Dockerfile +++ b/8.0/alpine/Dockerfile @@ -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 \ diff --git a/7.10/onbuild/Dockerfile b/8.0/onbuild/Dockerfile similarity index 93% rename from 7.10/onbuild/Dockerfile rename to 8.0/onbuild/Dockerfile index a21fb539..e27e9242 100644 --- a/7.10/onbuild/Dockerfile +++ b/8.0/onbuild/Dockerfile @@ -1,4 +1,4 @@ -FROM node:7.10.0 +FROM node:8.0.0 RUN mkdir -p /usr/src/app WORKDIR /usr/src/app diff --git a/7.10/slim/Dockerfile b/8.0/slim/Dockerfile similarity index 99% rename from 7.10/slim/Dockerfile rename to 8.0/slim/Dockerfile index 20ec8cc5..34adb399 100644 --- a/7.10/slim/Dockerfile +++ b/8.0/slim/Dockerfile @@ -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 \ diff --git a/7.10/wheezy/Dockerfile b/8.0/wheezy/Dockerfile similarity index 98% rename from 7.10/wheezy/Dockerfile rename to 8.0/wheezy/Dockerfile index 23283378..971ae2ba 100644 --- a/7.10/wheezy/Dockerfile +++ b/8.0/wheezy/Dockerfile @@ -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" \ diff --git a/generate-stackbrew-library.sh b/generate-stackbrew-library.sh index 6e8039d6..de471f79 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_10='7 latest'; +array_8_0='8 latest'; cd $(cd ${0%/*} && pwd -P);