From be0fbedc36a8746a7cbe3b3b1972175177fcdadd Mon Sep 17 00:00:00 2001 From: Peter Dave Hello Date: Wed, 3 Jul 2019 22:04:03 +0800 Subject: [PATCH] Update node.js v12 from v12.5.0 to v12.6.0 - https://nodejs.org/en/blog/release/v12.6.0/ - https://github.com/nodejs/node/releases/tag/v12.6.0 - https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V12.md#12.6.0 --- 12/alpine/Dockerfile | 2 +- 12/stretch-slim/Dockerfile | 2 +- 12/stretch/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/12/alpine/Dockerfile b/12/alpine/Dockerfile index f2502a9b..370f1402 100644 --- a/12/alpine/Dockerfile +++ b/12/alpine/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.9 -ENV NODE_VERSION 12.5.0 +ENV NODE_VERSION 12.6.0 RUN addgroup -g 1000 node \ && adduser -u 1000 -G node -s /bin/sh -D node \ diff --git a/12/stretch-slim/Dockerfile b/12/stretch-slim/Dockerfile index 8179398e..a016f8f2 100644 --- a/12/stretch-slim/Dockerfile +++ b/12/stretch-slim/Dockerfile @@ -3,7 +3,7 @@ FROM debian:stretch-slim RUN groupadd --gid 1000 node \ && useradd --uid 1000 --gid node --shell /bin/bash --create-home node -ENV NODE_VERSION 12.5.0 +ENV NODE_VERSION 12.6.0 RUN buildDeps='xz-utils' \ && ARCH= && dpkgArch="$(dpkg --print-architecture)" \ diff --git a/12/stretch/Dockerfile b/12/stretch/Dockerfile index 56829c61..c2bbbfe6 100644 --- a/12/stretch/Dockerfile +++ b/12/stretch/Dockerfile @@ -3,7 +3,7 @@ FROM buildpack-deps:stretch RUN groupadd --gid 1000 node \ && useradd --uid 1000 --gid node --shell /bin/bash --create-home node -ENV NODE_VERSION 12.5.0 +ENV NODE_VERSION 12.6.0 RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \ && case "${dpkgArch##*-}" in \