Skip to content

Commit

Permalink
Merge pull request nodejs#51 from hmalphettes/master
Browse files Browse the repository at this point in the history
Upgrade to 4.2.0
  • Loading branch information
hmalphettes committed Oct 13, 2015
2 parents a8248b7 + c615e83 commit 184653e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion 4.1/Dockerfile → 4.2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN set -ex \
done

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 4.1.2
ENV NODE_VERSION 4.2.0

RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.gz" \
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
Expand Down
2 changes: 1 addition & 1 deletion 4.1/onbuild/Dockerfile → 4.2/onbuild/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:4.1.2
FROM node:4.2.0

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
Expand Down
2 changes: 1 addition & 1 deletion 4.1/slim/Dockerfile → 4.2/slim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN set -ex \
done

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 4.1.2
ENV NODE_VERSION 4.2.0

RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.gz" \
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
Expand Down
2 changes: 1 addition & 1 deletion 4.1/wheezy/Dockerfile → 4.2/wheezy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN set -ex \
done

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 4.1.2
ENV NODE_VERSION 4.2.0

RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.gz" \
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
Expand Down
4 changes: 2 additions & 2 deletions generate-stackbrew-library.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e
hash git 2>/dev/null || { echo >&2 "git not found, exiting."; }

array_0_12='0';
array_4_1='4 latest';
array_4_2='4 latest';

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

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

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

echo
echo
for va in "${versionAliases[@]}"; do
echo "$va: ${url}@${commit} $version"
done
Expand Down

0 comments on commit 184653e

Please sign in to comment.