From a3e68b35ee4441d2c11761e0cdd76d313be88caa Mon Sep 17 00:00:00 2001 From: "Node.js GitHub Bot" Date: Fri, 31 Jan 2025 17:21:26 +0000 Subject: [PATCH] feat: Node.js 23.7.0 --- 23/alpine3.20/Dockerfile | 4 ++-- 23/alpine3.21/Dockerfile | 4 ++-- 23/bookworm-slim/Dockerfile | 2 +- 23/bookworm/Dockerfile | 2 +- 23/bullseye-slim/Dockerfile | 2 +- 23/bullseye/Dockerfile | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/23/alpine3.20/Dockerfile b/23/alpine3.20/Dockerfile index 29ff96b46..b4085aca4 100644 --- a/23/alpine3.20/Dockerfile +++ b/23/alpine3.20/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.20 -ENV NODE_VERSION 23.6.1 +ENV NODE_VERSION 23.7.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="07ca7bd1b315fd185bd125a72b005b6367c91ba96973fcc4ee161c472a70dfda" OPENSSL_ARCH=linux-x86_64;; \ + x86_64) ARCH='x64' CHECKSUM="35fa7bfe4a254968ede91cb97dafac426bfa50860a5039fecaff72dca2d08e89" OPENSSL_ARCH=linux-x86_64;; \ x86) OPENSSL_ARCH=linux-elf;; \ aarch64) OPENSSL_ARCH=linux-aarch64;; \ arm*) OPENSSL_ARCH=linux-armv4;; \ diff --git a/23/alpine3.21/Dockerfile b/23/alpine3.21/Dockerfile index 85f0240b4..d8bea6631 100644 --- a/23/alpine3.21/Dockerfile +++ b/23/alpine3.21/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.21 -ENV NODE_VERSION 23.6.1 +ENV NODE_VERSION 23.7.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="07ca7bd1b315fd185bd125a72b005b6367c91ba96973fcc4ee161c472a70dfda" OPENSSL_ARCH=linux-x86_64;; \ + x86_64) ARCH='x64' CHECKSUM="35fa7bfe4a254968ede91cb97dafac426bfa50860a5039fecaff72dca2d08e89" OPENSSL_ARCH=linux-x86_64;; \ x86) OPENSSL_ARCH=linux-elf;; \ aarch64) OPENSSL_ARCH=linux-aarch64;; \ arm*) OPENSSL_ARCH=linux-armv4;; \ diff --git a/23/bookworm-slim/Dockerfile b/23/bookworm-slim/Dockerfile index 68ea40846..341c53b34 100644 --- a/23/bookworm-slim/Dockerfile +++ b/23/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 23.6.1 +ENV NODE_VERSION 23.7.0 RUN ARCH= OPENSSL_ARCH= && dpkgArch="$(dpkg --print-architecture)" \ && case "${dpkgArch##*-}" in \ diff --git a/23/bookworm/Dockerfile b/23/bookworm/Dockerfile index 7afc3f41a..4d21f037d 100644 --- a/23/bookworm/Dockerfile +++ b/23/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 23.6.1 +ENV NODE_VERSION 23.7.0 RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \ && case "${dpkgArch##*-}" in \ diff --git a/23/bullseye-slim/Dockerfile b/23/bullseye-slim/Dockerfile index 67430b3c1..2a230cb83 100644 --- a/23/bullseye-slim/Dockerfile +++ b/23/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 23.6.1 +ENV NODE_VERSION 23.7.0 RUN ARCH= OPENSSL_ARCH= && dpkgArch="$(dpkg --print-architecture)" \ && case "${dpkgArch##*-}" in \ diff --git a/23/bullseye/Dockerfile b/23/bullseye/Dockerfile index 098f4347b..d441fbad2 100644 --- a/23/bullseye/Dockerfile +++ b/23/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 23.6.1 +ENV NODE_VERSION 23.7.0 RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \ && case "${dpkgArch##*-}" in \