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

Update Dockerfiles to io.js v1.6.0 #41

Merged
merged 1 commit into from
Mar 20, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 1.5/Dockerfile → 1.6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM buildpack-deps:jessie
RUN gpg --keyserver pool.sks-keyservers.net --recv-keys 9554F04D7259F04124DE6B476D5A82AC7E37093B DD8F2338BAE7501E3DD5AC78C273792F7D83545D

ENV NPM_CONFIG_LOGLEVEL info
ENV IOJS_VERSION 1.5.1
ENV IOJS_VERSION 1.6.0

RUN curl -SLO "https://iojs.org/dist/v$IOJS_VERSION/iojs-v$IOJS_VERSION-linux-x64.tar.gz" \
&& curl -SLO "https://iojs.org/dist/v$IOJS_VERSION/SHASUMS256.txt.asc" \
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion 1.5/onbuild/Dockerfile → 1.6/onbuild/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM iojs:1.5.1
FROM iojs:1.6.0

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
Expand Down
2 changes: 1 addition & 1 deletion 1.5/slim/Dockerfile → 1.6/slim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM buildpack-deps:jessie-curl
RUN gpg --keyserver pool.sks-keyservers.net --recv-keys 9554F04D7259F04124DE6B476D5A82AC7E37093B DD8F2338BAE7501E3DD5AC78C273792F7D83545D

ENV NPM_CONFIG_LOGLEVEL info
ENV IOJS_VERSION 1.5.1
ENV IOJS_VERSION 1.6.0

RUN curl -SLO "https://iojs.org/dist/v$IOJS_VERSION/iojs-v$IOJS_VERSION-linux-x64.tar.gz" \
&& curl -SLO "https://iojs.org/dist/v$IOJS_VERSION/SHASUMS256.txt.asc" \
Expand Down
6 changes: 3 additions & 3 deletions generate-stackbrew-library.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -e

declare -A aliases
aliases=(
[1.5]='1 latest'
[1.6]='1 latest'
)

cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"
Expand All @@ -18,12 +18,12 @@ for version in "${versions[@]}"; do
commit="$(git log -1 --format='format:%H' -- "$version")"
fullVersion="$(grep -m1 'ENV IOJS_VERSION ' "$version/Dockerfile" | cut -d' ' -f3)"
versionAliases=( $fullVersion $version ${aliases[$version]} )

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

for variant in onbuild slim; do
commit="$(git log -1 --format='format:%H' -- "$version/$variant")"
echo
Expand Down