Merge pull request #334 from chorrell/v6.10.0

Update for Node.js v6.10.0
This commit is contained in:
Christopher Horrell 2017-02-22 08:01:42 -05:00 committed by GitHub
commit b224951b45
7 changed files with 7 additions and 7 deletions

View File

@ -9,5 +9,5 @@ script:
env: env:
matrix : matrix :
- NODE_VERSION: '4.8' - NODE_VERSION: '4.8'
- NODE_VERSION: '6.9' - NODE_VERSION: '6.10'
- NODE_VERSION: '7.5' - NODE_VERSION: '7.5'

View File

@ -19,7 +19,7 @@ RUN set -ex \
done done
ENV NPM_CONFIG_LOGLEVEL info ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 6.9.5 ENV NODE_VERSION 6.10.0
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \ 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" \ && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \

View File

@ -1,7 +1,7 @@
FROM alpine:3.4 FROM alpine:3.4
ENV NPM_CONFIG_LOGLEVEL info ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 6.9.5 ENV NODE_VERSION 6.10.0
RUN adduser -D -u 1000 node \ RUN adduser -D -u 1000 node \
&& apk add --no-cache \ && apk add --no-cache \

View File

@ -1,4 +1,4 @@
FROM node:6.9.5 FROM node:6.10.0
RUN mkdir -p /usr/src/app RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app WORKDIR /usr/src/app

View File

@ -19,7 +19,7 @@ RUN set -ex \
done done
ENV NPM_CONFIG_LOGLEVEL info ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 6.9.5 ENV NODE_VERSION 6.10.0
RUN buildDeps='xz-utils' \ RUN buildDeps='xz-utils' \
&& set -x \ && set -x \

View File

@ -19,7 +19,7 @@ RUN set -ex \
done done
ENV NPM_CONFIG_LOGLEVEL info ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 6.9.5 ENV NODE_VERSION 6.10.0
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \ 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" \ && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \

View File

@ -4,7 +4,7 @@ set -e
hash git 2>/dev/null || { echo >&2 "git not found, exiting."; } hash git 2>/dev/null || { echo >&2 "git not found, exiting."; }
array_4_8='4 argon'; array_4_8='4 argon';
array_6_9='6 boron'; array_6_10='6 boron';
array_7_5='7 latest'; array_7_5='7 latest';
cd $(cd ${0%/*} && pwd -P); cd $(cd ${0%/*} && pwd -P);