Skip to content

Commit 184653e

Browse files
committed
Merge pull request #51 from hmalphettes/master
Upgrade to 4.2.0
2 parents a8248b7 + c615e83 commit 184653e

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

4.1/Dockerfile renamed to 4.2/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN set -ex \
1414
done
1515

1616
ENV NPM_CONFIG_LOGLEVEL info
17-
ENV NODE_VERSION 4.1.2
17+
ENV NODE_VERSION 4.2.0
1818

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

4.1/onbuild/Dockerfile renamed to 4.2/onbuild/Dockerfile

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

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

4.1/slim/Dockerfile renamed to 4.2/slim/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN set -ex \
1414
done
1515

1616
ENV NPM_CONFIG_LOGLEVEL info
17-
ENV NODE_VERSION 4.1.2
17+
ENV NODE_VERSION 4.2.0
1818

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

4.1/wheezy/Dockerfile renamed to 4.2/wheezy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN set -ex \
1414
done
1515

1616
ENV NPM_CONFIG_LOGLEVEL info
17-
ENV NODE_VERSION 4.1.2
17+
ENV NODE_VERSION 4.2.0
1818

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

generate-stackbrew-library.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44
hash git 2>/dev/null || { echo >&2 "git not found, exiting."; }
55

66
array_0_12='0';
7-
array_4_1='4 latest';
7+
array_4_2='4 latest';
88

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

@@ -21,7 +21,7 @@ for version in "${versions[@]}"; do
2121

2222
versionAliases=( $fullVersion $version ${stub} )
2323

24-
echo
24+
echo
2525
for va in "${versionAliases[@]}"; do
2626
echo "$va: ${url}@${commit} $version"
2727
done

0 commit comments

Comments
 (0)