This repository was archived by the owner on Jul 20, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed
Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ FROM buildpack-deps:jessie
44RUN gpg --keyserver pool.sks-keyservers.net --recv-keys 9554F04D7259F04124DE6B476D5A82AC7E37093B DD8F2338BAE7501E3DD5AC78C273792F7D83545D
55
66ENV NPM_CONFIG_LOGLEVEL info
7- ENV IOJS_VERSION 1.5.1
7+ ENV IOJS_VERSION 1.6.0
88
99RUN 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.
Original file line number Diff line number Diff line change 1- FROM iojs:1.5.1
1+ FROM iojs:1.6.0
22
33RUN mkdir -p /usr/src/app
44WORKDIR /usr/src/app
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ FROM buildpack-deps:jessie-curl
44RUN gpg --keyserver pool.sks-keyservers.net --recv-keys 9554F04D7259F04124DE6B476D5A82AC7E37093B DD8F2338BAE7501E3DD5AC78C273792F7D83545D
55
66ENV NPM_CONFIG_LOGLEVEL info
7- ENV IOJS_VERSION 1.5.1
7+ ENV IOJS_VERSION 1.6.0
88
99RUN 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" \
Original file line number Diff line number Diff line change 33
44declare -A aliases
55aliases=(
6- [1.5 ]=' 1 latest'
6+ [1.6 ]=' 1 latest'
77)
88
99cd " $( 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
You can’t perform that action at this time.
0 commit comments