Skip to content
This repository was archived by the owner on Jul 20, 2018. It is now read-only.

Commit 7f8c324

Browse files
committedMar 20, 2015
Merge pull request #41 from Starefossen/iojs-1-6-0
Update Dockerfiles to io.js v1.6.0
2 parents 8c35508 + 9767d9a commit 7f8c324

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed
 

‎1.5/Dockerfile ‎1.6/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM buildpack-deps:jessie
44
RUN gpg --keyserver pool.sks-keyservers.net --recv-keys 9554F04D7259F04124DE6B476D5A82AC7E37093B DD8F2338BAE7501E3DD5AC78C273792F7D83545D
55

66
ENV NPM_CONFIG_LOGLEVEL info
7-
ENV IOJS_VERSION 1.5.1
7+
ENV IOJS_VERSION 1.6.0
88

99
RUN curl -SLO "https://iojs.org/dist/v$IOJS_VERSION/iojs-v$IOJS_VERSION-linux-x64.tar.gz" \
1010
&& curl -SLO "https://iojs.org/dist/v$IOJS_VERSION/SHASUMS256.txt.asc" \

‎1.5/README.md ‎1.6/README.md

File renamed without changes.

‎1.5/onbuild/Dockerfile ‎1.6/onbuild/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM iojs:1.5.1
1+
FROM iojs:1.6.0
22

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

‎1.5/slim/Dockerfile ‎1.6/slim/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM buildpack-deps:jessie-curl
44
RUN gpg --keyserver pool.sks-keyservers.net --recv-keys 9554F04D7259F04124DE6B476D5A82AC7E37093B DD8F2338BAE7501E3DD5AC78C273792F7D83545D
55

66
ENV NPM_CONFIG_LOGLEVEL info
7-
ENV IOJS_VERSION 1.5.1
7+
ENV IOJS_VERSION 1.6.0
88

99
RUN curl -SLO "https://iojs.org/dist/v$IOJS_VERSION/iojs-v$IOJS_VERSION-linux-x64.tar.gz" \
1010
&& curl -SLO "https://iojs.org/dist/v$IOJS_VERSION/SHASUMS256.txt.asc" \

‎generate-stackbrew-library.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -e
33

44
declare -A aliases
55
aliases=(
6-
[1.5]='1 latest'
6+
[1.6]='1 latest'
77
)
88

99
cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"
@@ -18,12 +18,12 @@ for version in "${versions[@]}"; do
1818
commit="$(git log -1 --format='format:%H' -- "$version")"
1919
fullVersion="$(grep -m1 'ENV IOJS_VERSION ' "$version/Dockerfile" | cut -d' ' -f3)"
2020
versionAliases=( $fullVersion $version ${aliases[$version]} )
21-
21+
2222
echo
2323
for va in "${versionAliases[@]}"; do
2424
echo "$va: ${url}@${commit} $version"
2525
done
26-
26+
2727
for variant in onbuild slim; do
2828
commit="$(git log -1 --format='format:%H' -- "$version/$variant")"
2929
echo

0 commit comments

Comments
 (0)
This repository has been archived.