From ed83529ea65cfbeadda161ee501b4cf83444aa2d Mon Sep 17 00:00:00 2001 From: "Node.js GitHub Bot" Date: Wed, 15 Nov 2023 20:33:13 +0000 Subject: [PATCH] feat: Node.js 21.2.0 --- 21/alpine3.17/Dockerfile | 4 ++-- 21/alpine3.18/Dockerfile | 4 ++-- 21/bookworm-slim/Dockerfile | 2 +- 21/bookworm/Dockerfile | 2 +- 21/bullseye-slim/Dockerfile | 2 +- 21/bullseye/Dockerfile | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/21/alpine3.17/Dockerfile b/21/alpine3.17/Dockerfile index 1c8cfcb1..ad82a307 100644 --- a/21/alpine3.17/Dockerfile +++ b/21/alpine3.17/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.17 -ENV NODE_VERSION 21.1.0 +ENV NODE_VERSION 21.2.0 RUN addgroup -g 1000 node \ && adduser -u 1000 -G node -s /bin/sh -D node \ @@ -10,7 +10,7 @@ RUN addgroup -g 1000 node \ curl \ && ARCH= OPENSSL_ARCH='linux*' && alpineArch="$(apk --print-arch)" \ && case "${alpineArch##*-}" in \ - x86_64) ARCH='x64' CHECKSUM="987dac3f01a5b81bd3674edcf984161ed145995f2f11e7b5893249af5fa237e8" OPENSSL_ARCH=linux-x86_64;; \ + x86_64) ARCH='x64' CHECKSUM="e5d565cc86043625e3c15b8377e9c68b939beed323759a5bd6a69ee87f888ac8" OPENSSL_ARCH=linux-x86_64;; \ x86) OPENSSL_ARCH=linux-elf;; \ aarch64) OPENSSL_ARCH=linux-aarch64;; \ arm*) OPENSSL_ARCH=linux-armv4;; \ diff --git a/21/alpine3.18/Dockerfile b/21/alpine3.18/Dockerfile index 56920426..1af6e7ab 100644 --- a/21/alpine3.18/Dockerfile +++ b/21/alpine3.18/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.18 -ENV NODE_VERSION 21.1.0 +ENV NODE_VERSION 21.2.0 RUN addgroup -g 1000 node \ && adduser -u 1000 -G node -s /bin/sh -D node \ @@ -10,7 +10,7 @@ RUN addgroup -g 1000 node \ curl \ && ARCH= OPENSSL_ARCH='linux*' && alpineArch="$(apk --print-arch)" \ && case "${alpineArch##*-}" in \ - x86_64) ARCH='x64' CHECKSUM="987dac3f01a5b81bd3674edcf984161ed145995f2f11e7b5893249af5fa237e8" OPENSSL_ARCH=linux-x86_64;; \ + x86_64) ARCH='x64' CHECKSUM="e5d565cc86043625e3c15b8377e9c68b939beed323759a5bd6a69ee87f888ac8" OPENSSL_ARCH=linux-x86_64;; \ x86) OPENSSL_ARCH=linux-elf;; \ aarch64) OPENSSL_ARCH=linux-aarch64;; \ arm*) OPENSSL_ARCH=linux-armv4;; \ diff --git a/21/bookworm-slim/Dockerfile b/21/bookworm-slim/Dockerfile index a2029097..91cb5c4c 100644 --- a/21/bookworm-slim/Dockerfile +++ b/21/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 21.1.0 +ENV NODE_VERSION 21.2.0 RUN ARCH= OPENSSL_ARCH= && dpkgArch="$(dpkg --print-architecture)" \ && case "${dpkgArch##*-}" in \ diff --git a/21/bookworm/Dockerfile b/21/bookworm/Dockerfile index 70aab56a..1b22bfa3 100644 --- a/21/bookworm/Dockerfile +++ b/21/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 21.1.0 +ENV NODE_VERSION 21.2.0 RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \ && case "${dpkgArch##*-}" in \ diff --git a/21/bullseye-slim/Dockerfile b/21/bullseye-slim/Dockerfile index 7395249c..5dde7654 100644 --- a/21/bullseye-slim/Dockerfile +++ b/21/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 21.1.0 +ENV NODE_VERSION 21.2.0 RUN ARCH= OPENSSL_ARCH= && dpkgArch="$(dpkg --print-architecture)" \ && case "${dpkgArch##*-}" in \ diff --git a/21/bullseye/Dockerfile b/21/bullseye/Dockerfile index 41a82407..e8970d60 100644 --- a/21/bullseye/Dockerfile +++ b/21/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 21.1.0 +ENV NODE_VERSION 21.2.0 RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \ && case "${dpkgArch##*-}" in \