Update for node 7.9.0

https://nodejs.org/en/blog/release/v7.9.0/
This commit is contained in:
Simen Bekkhus 2017-04-12 07:58:45 +02:00
parent 96dfa3f30b
commit a82c9dcd3f
No known key found for this signature in database
GPG Key ID: E3BEC11885DC91B6
7 changed files with 8 additions and 8 deletions

View File

@ -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'

View File

@ -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" \

View File

@ -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 \

View File

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

View File

@ -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 \

View File

@ -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" \

View File

@ -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);