From ca2369919ee9e7dce738e4db8c01138d2fa4c8d4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 20 Jul 2026 14:19:07 +0000 Subject: [PATCH 1/2] Initial plan From d8b9fc073b26a8d37d584748ab95d72208f75188 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 20 Jul 2026 14:21:02 +0000 Subject: [PATCH 2/2] Fix CI: update Node.js to v24.18.0 LTS to satisfy npm@latest engine requirements --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 122a7d9..c92a1ae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,8 +18,8 @@ LABEL maintainer="hi@beevelop.com" \ org.opencontainers.image.documentation="https://github.com/beevelop/docker-android-nodejs/blob/latest/README.md" \ org.opencontainers.image.source="https://github.com/beevelop/docker-android-nodejs.git" -# Install Node.js 22 with compatible npm using official Node.js binaries -ENV NODE_VERSION=22.18.0 +# Install Node.js 24 (Active LTS) with compatible npm using official Node.js binaries +ENV NODE_VERSION=24.18.0 RUN apt-get update && apt-get install -y curl ca-certificates xz-utils && \ curl -fsSL https://nodejs.org/dist/v${NODE_VERSION}/node-v${NODE_VERSION}-linux-x64.tar.xz | tar -xJ -C /usr/local --strip-components=1 && \ npm install -g npm@latest && \