diff --git a/11/alpine/Dockerfile b/11/alpine/Dockerfile index 0f9fa6c8..f7aca722 100644 --- a/11/alpine/Dockerfile +++ b/11/alpine/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.9 -ENV NODE_VERSION 11.13.0 +ENV NODE_VERSION 11.14.0 RUN addgroup -g 1000 node \ && adduser -u 1000 -G node -s /bin/sh -D node \ diff --git a/11/stretch-slim/Dockerfile b/11/stretch-slim/Dockerfile index c51c630b..4cb46618 100644 --- a/11/stretch-slim/Dockerfile +++ b/11/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 11.13.0 +ENV NODE_VERSION 11.14.0 RUN buildDeps='xz-utils' \ && ARCH= && dpkgArch="$(dpkg --print-architecture)" \ diff --git a/11/stretch/Dockerfile b/11/stretch/Dockerfile index b8fec1a7..8803f3fd 100644 --- a/11/stretch/Dockerfile +++ b/11/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 11.13.0 +ENV NODE_VERSION 11.14.0 RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \ && case "${dpkgArch##*-}" in \