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 && \