Skip to content

Commit

Permalink
Merge pull request #427 from pesho/v6.11.0
Browse files Browse the repository at this point in the history
Update for Node v6.11.0 LTS
  • Loading branch information
pesho committed Jun 7, 2017
2 parents 6f27c95 + e2b78b4 commit 17a8343
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ script:
env:
matrix :
- NODE_VERSION: '4.8'
- NODE_VERSION: '6.10'
- NODE_VERSION: '6.11'
- NODE_VERSION: '8.0'
4 changes: 2 additions & 2 deletions 6.10/Dockerfile → 6.11/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN set -ex \
done

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 6.10.3
ENV NODE_VERSION 6.11.0

RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
&& curl -SLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
Expand All @@ -31,7 +31,7 @@ RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-
&& rm "node-v$NODE_VERSION-linux-x64.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt \
&& ln -s /usr/local/bin/node /usr/local/bin/nodejs

ENV YARN_VERSION 0.24.4
ENV YARN_VERSION 0.24.6

RUN set -ex \
&& for key in \
Expand Down
4 changes: 2 additions & 2 deletions 6.10/alpine/Dockerfile → 6.11/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM alpine:3.4

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 6.10.3
ENV NODE_VERSION 6.11.0

RUN addgroup -g 1000 node \
&& adduser -u 1000 -G node -s /bin/sh -D node \
Expand Down Expand Up @@ -46,7 +46,7 @@ RUN addgroup -g 1000 node \
&& rm -Rf "node-v$NODE_VERSION" \
&& rm "node-v$NODE_VERSION.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt

ENV YARN_VERSION 0.24.4
ENV YARN_VERSION 0.24.6

RUN apk add --no-cache --virtual .build-deps-yarn curl gnupg tar \
&& for key in \
Expand Down
2 changes: 1 addition & 1 deletion 6.10/onbuild/Dockerfile → 6.11/onbuild/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:6.10.3
FROM node:6.11.0

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
Expand Down
4 changes: 2 additions & 2 deletions 6.10/slim/Dockerfile → 6.11/slim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN set -ex \
done

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 6.10.3
ENV NODE_VERSION 6.11.0

RUN buildDeps='xz-utils' \
&& set -x \
Expand All @@ -36,7 +36,7 @@ RUN buildDeps='xz-utils' \
&& apt-get purge -y --auto-remove $buildDeps \
&& ln -s /usr/local/bin/node /usr/local/bin/nodejs

ENV YARN_VERSION 0.24.4
ENV YARN_VERSION 0.24.6

RUN set -ex \
&& for key in \
Expand Down
4 changes: 2 additions & 2 deletions 6.10/wheezy/Dockerfile → 6.11/wheezy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN set -ex \
done

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 6.10.3
ENV NODE_VERSION 6.11.0

RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
&& curl -SLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
Expand All @@ -31,7 +31,7 @@ RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-
&& rm "node-v$NODE_VERSION-linux-x64.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt \
&& ln -s /usr/local/bin/node /usr/local/bin/nodejs

ENV YARN_VERSION 0.24.4
ENV YARN_VERSION 0.24.6

RUN set -ex \
&& for key in \
Expand Down
2 changes: 1 addition & 1 deletion 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_4_8='4 argon';
array_6_10='6 boron';
array_6_11='6 boron';
array_8_0='8 latest';

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

0 comments on commit 17a8343

Please sign in to comment.