From bd74777e9e5c89685146d4963b6bb78970dd2133 Mon Sep 17 00:00:00 2001 From: Christopher Horrell Date: Thu, 24 May 2018 20:19:17 -0400 Subject: [PATCH] Update for Node.js v10.2.1 (#759) See: https://nodejs.org/en/blog/release/v10.2.1/ --- 10/Dockerfile | 2 +- 10/alpine/Dockerfile | 2 +- 10/slim/Dockerfile | 2 +- 10/stretch/Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/10/Dockerfile b/10/Dockerfile index 7fa7cda4..7a022bd1 100644 --- a/10/Dockerfile +++ b/10/Dockerfile @@ -20,7 +20,7 @@ RUN set -ex \ gpg --keyserver hkp://pgp.mit.edu:80 --recv-keys "$key" ; \ done -ENV NODE_VERSION 10.2.0 +ENV NODE_VERSION 10.2.1 RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \ && case "${dpkgArch##*-}" in \ diff --git a/10/alpine/Dockerfile b/10/alpine/Dockerfile index 0573a2c8..931a21b3 100644 --- a/10/alpine/Dockerfile +++ b/10/alpine/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.7 -ENV NODE_VERSION 10.2.0 +ENV NODE_VERSION 10.2.1 RUN addgroup -g 1000 node \ && adduser -u 1000 -G node -s /bin/sh -D node \ diff --git a/10/slim/Dockerfile b/10/slim/Dockerfile index b57810fc..94777db7 100644 --- a/10/slim/Dockerfile +++ b/10/slim/Dockerfile @@ -20,7 +20,7 @@ RUN set -ex \ gpg --keyserver hkp://pgp.mit.edu:80 --recv-keys "$key" ; \ done -ENV NODE_VERSION 10.2.0 +ENV NODE_VERSION 10.2.1 RUN buildDeps='xz-utils' \ && ARCH= && dpkgArch="$(dpkg --print-architecture)" \ diff --git a/10/stretch/Dockerfile b/10/stretch/Dockerfile index 3fbc3352..2e9c6dbf 100644 --- a/10/stretch/Dockerfile +++ b/10/stretch/Dockerfile @@ -20,7 +20,7 @@ RUN set -ex \ gpg --keyserver hkp://pgp.mit.edu:80 --recv-keys "$key" ; \ done -ENV NODE_VERSION 10.2.0 +ENV NODE_VERSION 10.2.1 RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \ && case "${dpkgArch##*-}" in \