Skip to content

Commit

Permalink
Upgrade to node 8.7 (#544)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB authored Oct 11, 2017
1 parent 1d71e2a commit 15d780e
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions 8.6/Dockerfile → 8.7/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 8.6.0
ENV NODE_VERSION 8.7.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.1.0
ENV YARN_VERSION 1.2.0

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

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 8.6.0
ENV NODE_VERSION 8.7.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 1.1.0
ENV YARN_VERSION 1.2.0

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

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
Expand Down
4 changes: 2 additions & 2 deletions 8.6/slim/Dockerfile → 8.7/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 8.6.0
ENV NODE_VERSION 8.7.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.1.0
ENV YARN_VERSION 1.2.0

RUN set -ex \
&& for key in \
Expand Down
4 changes: 2 additions & 2 deletions 8.6/stretch/Dockerfile → 8.7/stretch/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 8.6.0
ENV NODE_VERSION 8.7.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.1.0
ENV YARN_VERSION 1.2.0

RUN set -ex \
&& for key in \
Expand Down
4 changes: 2 additions & 2 deletions 8.6/wheezy/Dockerfile → 8.7/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 8.6.0
ENV NODE_VERSION 8.7.0

RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
&& case "${dpkgArch##*-}" in \
Expand All @@ -37,7 +37,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.1.0
ENV YARN_VERSION 1.2.0

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 @@ -10,7 +10,7 @@ array_4_8='4 argon';
# shellcheck disable=SC2034
array_6_11='6 boron';
# shellcheck disable=SC2034
array_8_6='8 latest';
array_8_7='8 latest';

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

Expand Down

0 comments on commit 15d780e

Please sign in to comment.