Skip to content

Commit 526177c

Browse files
authored
Merge pull request #377 from SimenB/7.9
Update for node 7.9.0
2 parents 96dfa3f + a82c9dc commit 526177c

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ sudo: required
22

33
services:
44
- docker
5-
5+
66
script:
77
- ./test-build.sh $NODE_VERSION
88

99
env:
1010
matrix :
1111
- NODE_VERSION: '4.8'
1212
- NODE_VERSION: '6.10'
13-
- NODE_VERSION: '7.8'
13+
- NODE_VERSION: '7.9'

7.8/Dockerfile renamed to 7.9/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN set -ex \
2121
done
2222

2323
ENV NPM_CONFIG_LOGLEVEL info
24-
ENV NODE_VERSION 7.8.0
24+
ENV NODE_VERSION 7.9.0
2525

2626
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
2727
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \

7.8/alpine/Dockerfile renamed to 7.9/alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM alpine:3.4
22

33
ENV NPM_CONFIG_LOGLEVEL info
4-
ENV NODE_VERSION 7.8.0
4+
ENV NODE_VERSION 7.9.0
55

66
RUN addgroup -g 1000 node \
77
&& adduser -u 1000 -G node -s /bin/sh -D node \

7.8/onbuild/Dockerfile renamed to 7.9/onbuild/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:7.8.0
1+
FROM node:7.9.0
22

33
RUN mkdir -p /usr/src/app
44
WORKDIR /usr/src/app

7.8/slim/Dockerfile renamed to 7.9/slim/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN set -ex \
2121
done
2222

2323
ENV NPM_CONFIG_LOGLEVEL info
24-
ENV NODE_VERSION 7.8.0
24+
ENV NODE_VERSION 7.9.0
2525

2626
RUN buildDeps='xz-utils' \
2727
&& set -x \

7.8/wheezy/Dockerfile renamed to 7.9/wheezy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN set -ex \
2121
done
2222

2323
ENV NPM_CONFIG_LOGLEVEL info
24-
ENV NODE_VERSION 7.8.0
24+
ENV NODE_VERSION 7.9.0
2525

2626
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
2727
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \

generate-stackbrew-library.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ hash git 2>/dev/null || { echo >&2 "git not found, exiting."; }
55

66
array_4_8='4 argon';
77
array_6_10='6 boron';
8-
array_7_8='7 latest';
8+
array_7_9='7 latest';
99

1010
cd $(cd ${0%/*} && pwd -P);
1111

0 commit comments

Comments
 (0)