diff --git a/6/Dockerfile b/6/Dockerfile index df18a857..2c1d95e8 100644 --- a/6/Dockerfile +++ b/6/Dockerfile @@ -20,7 +20,7 @@ RUN set -ex \ gpg --keyserver hkp://pgp.mit.edu:80 --recv-keys "$key" ; \ done -ENV NODE_VERSION 6.13.1 +ENV NODE_VERSION 6.14.0 RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \ && case "${dpkgArch##*-}" in \ diff --git a/6/alpine/Dockerfile b/6/alpine/Dockerfile index ff5dc95a..0b6639cd 100644 --- a/6/alpine/Dockerfile +++ b/6/alpine/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.4 -ENV NODE_VERSION 6.13.1 +ENV NODE_VERSION 6.14.0 RUN addgroup -g 1000 node \ && adduser -u 1000 -G node -s /bin/sh -D node \ diff --git a/6/onbuild/Dockerfile b/6/onbuild/Dockerfile index 966d5793..9425156c 100644 --- a/6/onbuild/Dockerfile +++ b/6/onbuild/Dockerfile @@ -1,4 +1,4 @@ -FROM node:6.13.1 +FROM node:6.14.0 RUN mkdir -p /usr/src/app WORKDIR /usr/src/app diff --git a/6/slim/Dockerfile b/6/slim/Dockerfile index d9058c72..9d060efd 100644 --- a/6/slim/Dockerfile +++ b/6/slim/Dockerfile @@ -20,7 +20,7 @@ RUN set -ex \ gpg --keyserver hkp://pgp.mit.edu:80 --recv-keys "$key" ; \ done -ENV NODE_VERSION 6.13.1 +ENV NODE_VERSION 6.14.0 RUN buildDeps='xz-utils' \ && ARCH= && dpkgArch="$(dpkg --print-architecture)" \ diff --git a/6/stretch/Dockerfile b/6/stretch/Dockerfile index 8324d2a5..8448869d 100644 --- a/6/stretch/Dockerfile +++ b/6/stretch/Dockerfile @@ -20,7 +20,7 @@ RUN set -ex \ gpg --keyserver hkp://pgp.mit.edu:80 --recv-keys "$key" ; \ done -ENV NODE_VERSION 6.13.1 +ENV NODE_VERSION 6.14.0 RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \ && case "${dpkgArch##*-}" in \ diff --git a/6/wheezy/Dockerfile b/6/wheezy/Dockerfile index 2eba4031..b8f62534 100644 --- a/6/wheezy/Dockerfile +++ b/6/wheezy/Dockerfile @@ -20,7 +20,7 @@ RUN set -ex \ gpg --keyserver hkp://pgp.mit.edu:80 --recv-keys "$key" ; \ done -ENV NODE_VERSION 6.13.1 +ENV NODE_VERSION 6.14.0 RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \ && case "${dpkgArch##*-}" in \