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 \