From 33161d6f1329b30670bd3259c8db7bbe7da072c8 Mon Sep 17 00:00:00 2001 From: "Node.js GitHub Bot" Date: Tue, 22 Sep 2026 11:11:42 +0000 Subject: [PATCH] feat: Node.js 26.10.0 --- 26/alpine3.23/Dockerfile | 4 ++-- 26/alpine3.24/Dockerfile | 4 ++-- 26/bookworm-slim/Dockerfile | 2 +- 26/bookworm/Dockerfile | 2 +- 26/trixie-slim/Dockerfile | 2 +- 26/trixie/Dockerfile | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/26/alpine3.23/Dockerfile b/26/alpine3.23/Dockerfile index d03b436fe..8f209ab09 100644 --- a/26/alpine3.23/Dockerfile +++ b/26/alpine3.23/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.23 -ENV NODE_VERSION=26.9.0 +ENV NODE_VERSION=26.10.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="75482fd18104cd6e789a5653eb78b5d1a98cb49d8d9bf1d1b56bc4f30928886f" OPENSSL_ARCH=linux-x86_64;; \ + x86_64) ARCH='x64' CHECKSUM="e91679de73f48e4f107fc968bec351dea6676c7f54af004280a7baaf5c6d88c5" OPENSSL_ARCH=linux-x86_64;; \ aarch64) OPENSSL_ARCH=linux-aarch64;; \ *) echo "unsupported architecture"; exit 1 ;; \ esac \ diff --git a/26/alpine3.24/Dockerfile b/26/alpine3.24/Dockerfile index 11c5261b9..dd624094e 100644 --- a/26/alpine3.24/Dockerfile +++ b/26/alpine3.24/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.24 -ENV NODE_VERSION=26.9.0 +ENV NODE_VERSION=26.10.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="75482fd18104cd6e789a5653eb78b5d1a98cb49d8d9bf1d1b56bc4f30928886f" OPENSSL_ARCH=linux-x86_64;; \ + x86_64) ARCH='x64' CHECKSUM="e91679de73f48e4f107fc968bec351dea6676c7f54af004280a7baaf5c6d88c5" OPENSSL_ARCH=linux-x86_64;; \ aarch64) OPENSSL_ARCH=linux-aarch64;; \ *) echo "unsupported architecture"; exit 1 ;; \ esac \ diff --git a/26/bookworm-slim/Dockerfile b/26/bookworm-slim/Dockerfile index 38b20453f..184530352 100644 --- a/26/bookworm-slim/Dockerfile +++ b/26/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=26.9.0 +ENV NODE_VERSION=26.10.0 RUN ARCH= OPENSSL_ARCH= && dpkgArch="$(dpkg --print-architecture)" \ && case "${dpkgArch##*-}" in \ diff --git a/26/bookworm/Dockerfile b/26/bookworm/Dockerfile index 0c4a8a3cd..b946c0e4f 100644 --- a/26/bookworm/Dockerfile +++ b/26/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=26.9.0 +ENV NODE_VERSION=26.10.0 RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \ && case "${dpkgArch##*-}" in \ diff --git a/26/trixie-slim/Dockerfile b/26/trixie-slim/Dockerfile index 747fa4e2a..733208187 100644 --- a/26/trixie-slim/Dockerfile +++ b/26/trixie-slim/Dockerfile @@ -3,7 +3,7 @@ FROM debian:trixie-slim RUN groupadd --gid 1000 node \ && useradd --uid 1000 --gid node --shell /bin/bash --create-home node -ENV NODE_VERSION=26.9.0 +ENV NODE_VERSION=26.10.0 RUN ARCH= OPENSSL_ARCH= && dpkgArch="$(dpkg --print-architecture)" \ && case "${dpkgArch##*-}" in \ diff --git a/26/trixie/Dockerfile b/26/trixie/Dockerfile index a9f7fe90f..7d83461d1 100644 --- a/26/trixie/Dockerfile +++ b/26/trixie/Dockerfile @@ -3,7 +3,7 @@ FROM buildpack-deps:trixie RUN groupadd --gid 1000 node \ && useradd --uid 1000 --gid node --shell /bin/bash --create-home node -ENV NODE_VERSION=26.9.0 +ENV NODE_VERSION=26.10.0 RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \ && case "${dpkgArch##*-}" in \