Skip to content

Commit

Permalink
Update node.js v6.x to 6.12 with Yarn v1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterDaveHello committed Nov 7, 2017
1 parent 5f2a274 commit c08b108
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions 6.11/Dockerfile → 6.12/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key" ; \
done

ENV NODE_VERSION 6.11.5
ENV NODE_VERSION 6.12.0

RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
&& case "${dpkgArch##*-}" in \
Expand All @@ -40,7 +40,7 @@ RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
&& rm "node-v$NODE_VERSION-linux-$ARCH.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt \
&& ln -s /usr/local/bin/node /usr/local/bin/nodejs

ENV YARN_VERSION 1.2.1
ENV YARN_VERSION 1.3.2

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

ENV NODE_VERSION 6.11.5
ENV NODE_VERSION 6.12.0

RUN addgroup -g 1000 node \
&& adduser -u 1000 -G node -s /bin/sh -D node \
Expand Down Expand Up @@ -45,7 +45,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 1.2.1
ENV YARN_VERSION 1.3.2

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

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
Expand Down
4 changes: 2 additions & 2 deletions 6.11/slim/Dockerfile → 6.12/slim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key" ; \
done

ENV NODE_VERSION 6.11.5
ENV NODE_VERSION 6.12.0

RUN buildDeps='xz-utils' \
&& ARCH= && dpkgArch="$(dpkg --print-architecture)" \
Expand All @@ -45,7 +45,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 1.2.1
ENV YARN_VERSION 1.3.2

RUN set -ex \
&& for key in \
Expand Down
4 changes: 2 additions & 2 deletions 6.11/stretch/Dockerfile → 6.12/stretch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key" ; \
done

ENV NODE_VERSION 6.11.5
ENV NODE_VERSION 6.12.0

RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
&& case "${dpkgArch##*-}" in \
Expand All @@ -40,7 +40,7 @@ RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
&& rm "node-v$NODE_VERSION-linux-$ARCH.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt \
&& ln -s /usr/local/bin/node /usr/local/bin/nodejs

ENV YARN_VERSION 1.2.1
ENV YARN_VERSION 1.3.2

RUN set -ex \
&& for key in \
Expand Down
4 changes: 2 additions & 2 deletions 6.11/wheezy/Dockerfile → 6.12/wheezy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key" ; \
done

ENV NODE_VERSION 6.11.5
ENV NODE_VERSION 6.12.0

RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
&& case "${dpkgArch##*-}" in \
Expand All @@ -36,7 +36,7 @@ RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
&& rm "node-v$NODE_VERSION-linux-$ARCH.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt \
&& ln -s /usr/local/bin/node /usr/local/bin/nodejs

ENV YARN_VERSION 1.2.1
ENV YARN_VERSION 1.3.2

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 @@ -8,7 +8,7 @@ hash git 2>/dev/null || { echo >&2 "git not found, exiting."; }
# shellcheck disable=SC2034
array_4_8='4 argon';
# shellcheck disable=SC2034
array_6_11='6 boron';
array_6_12='6 boron';
# shellcheck disable=SC2034
array_8_9='8 carbon';
# shellcheck disable=SC2034
Expand Down

0 comments on commit c08b108

Please sign in to comment.