Skip to content

Commit 189588b

Browse files
author
Christopher Horrell
committed
Update for Node.js v7.8.0. Closes #369
See: - https://nodejs.org/en/blog/release/v7.8.0/
1 parent 47cf503 commit 189588b

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ env:
1010
matrix :
1111
- NODE_VERSION: '4.8'
1212
- NODE_VERSION: '6.10'
13-
- NODE_VERSION: '7.7'
13+
- NODE_VERSION: '7.8'

7.7/Dockerfile renamed to 7.8/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN set -ex \
1919
done
2020

2121
ENV NPM_CONFIG_LOGLEVEL info
22-
ENV NODE_VERSION 7.7.4
22+
ENV NODE_VERSION 7.8.0
2323

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

7.7/alpine/Dockerfile renamed to 7.8/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.7.4
4+
ENV NODE_VERSION 7.8.0
55

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

7.7/onbuild/Dockerfile renamed to 7.8/onbuild/Dockerfile

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

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

7.7/slim/Dockerfile renamed to 7.8/slim/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN set -ex \
1919
done
2020

2121
ENV NPM_CONFIG_LOGLEVEL info
22-
ENV NODE_VERSION 7.7.4
22+
ENV NODE_VERSION 7.8.0
2323

2424
RUN buildDeps='xz-utils' \
2525
&& set -x \

7.7/wheezy/Dockerfile renamed to 7.8/wheezy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN set -ex \
1919
done
2020

2121
ENV NPM_CONFIG_LOGLEVEL info
22-
ENV NODE_VERSION 7.7.4
22+
ENV NODE_VERSION 7.8.0
2323

2424
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
2525
&& 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_7='7 latest';
8+
array_7_8='7 latest';
99

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

0 commit comments

Comments
 (0)