diff --git a/22/alpine3.18/Dockerfile b/22/alpine3.18/Dockerfile index 1d2f5b2f4d..cec5d46fc4 100644 --- a/22/alpine3.18/Dockerfile +++ b/22/alpine3.18/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.18 -ENV NODE_VERSION 20.0.0 +ENV NODE_VERSION 22.0.0 RUN addgroup -g 1000 node \ && adduser -u 1000 -G node -s /bin/sh -D node \ diff --git a/22/alpine3.19/Dockerfile b/22/alpine3.19/Dockerfile index 6094212242..6900e91213 100644 --- a/22/alpine3.19/Dockerfile +++ b/22/alpine3.19/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.19 -ENV NODE_VERSION 20.0.0 +ENV NODE_VERSION 22.0.0 RUN addgroup -g 1000 node \ && adduser -u 1000 -G node -s /bin/sh -D node \ diff --git a/22/bookworm-slim/Dockerfile b/22/bookworm-slim/Dockerfile index 6cf57acf68..03410d05f7 100644 --- a/22/bookworm-slim/Dockerfile +++ b/22/bookworm-slim/Dockerfile @@ -3,7 +3,7 @@ FROM debian:bookworm-slim RUN groupadd --gid 1000 node \ && useradd --uid 1000 --gid node --shell /bin/bash --create-home node -ENV NODE_VERSION 20.0.0 +ENV NODE_VERSION 22.0.0 RUN ARCH= OPENSSL_ARCH= && dpkgArch="$(dpkg --print-architecture)" \ && case "${dpkgArch##*-}" in \ diff --git a/22/bookworm/Dockerfile b/22/bookworm/Dockerfile index 6d4d9072e0..6a1f765863 100644 --- a/22/bookworm/Dockerfile +++ b/22/bookworm/Dockerfile @@ -3,7 +3,7 @@ FROM buildpack-deps:bookworm RUN groupadd --gid 1000 node \ && useradd --uid 1000 --gid node --shell /bin/bash --create-home node -ENV NODE_VERSION 20.0.0 +ENV NODE_VERSION 22.0.0 RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \ && case "${dpkgArch##*-}" in \ diff --git a/22/bullseye-slim/Dockerfile b/22/bullseye-slim/Dockerfile index 6558622593..7b5cdb2036 100644 --- a/22/bullseye-slim/Dockerfile +++ b/22/bullseye-slim/Dockerfile @@ -3,7 +3,7 @@ FROM debian:bullseye-slim RUN groupadd --gid 1000 node \ && useradd --uid 1000 --gid node --shell /bin/bash --create-home node -ENV NODE_VERSION 20.0.0 +ENV NODE_VERSION 22.0.0 RUN ARCH= OPENSSL_ARCH= && dpkgArch="$(dpkg --print-architecture)" \ && case "${dpkgArch##*-}" in \ diff --git a/22/bullseye/Dockerfile b/22/bullseye/Dockerfile index b3142fff11..efdef6e02a 100644 --- a/22/bullseye/Dockerfile +++ b/22/bullseye/Dockerfile @@ -3,7 +3,7 @@ FROM buildpack-deps:bullseye RUN groupadd --gid 1000 node \ && useradd --uid 1000 --gid node --shell /bin/bash --create-home node -ENV NODE_VERSION 20.0.0 +ENV NODE_VERSION 22.0.0 RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \ && case "${dpkgArch##*-}" in \