From d02776a02d9ed397f73d61b858da42f7a68168a2 Mon Sep 17 00:00:00 2001 From: Rongxin Liu Date: Sun, 8 Mar 2026 11:44:54 +0800 Subject: [PATCH] Upgrade Node.js from version 22.x to 24.x in Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7e3b96c..5f4dd28 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,12 +31,12 @@ RUN cd /tmp && \ chmod a+rx /opt/bin/* -# Install Node.js 22.x +# Install Node.js 24.x # https://nodejs.dev/en/download/ # https://github.com/tj/n#installation RUN curl --location https://raw.githubusercontent.com/tj/n/master/bin/n --output /usr/local/bin/n && \ chmod a+x /usr/local/bin/n && \ - n 22.21.1 + n 24.14.0 # Install Node.js packages