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

Commit ad95770

Browse files
author
Hans Kristian Flaatten
committed
Update to v1.6.0
1 parent 8c35508 commit ad95770

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

1.5/Dockerfile renamed to 1.6/Dockerfile

Lines changed: 1 addition & 1 deletion
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" \
File renamed without changes.

1.5/onbuild/Dockerfile renamed to 1.6/onbuild/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM iojs:1.5.1
1+
FROM iojs:1.6.1
22

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

1.5/slim/Dockerfile renamed to 1.6/slim/Dockerfile

Lines changed: 1 addition & 1 deletion
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

Lines changed: 3 additions & 3 deletions
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)