From 50770b6e5fd52249668789a933dba96f00264e97 Mon Sep 17 00:00:00 2001 From: DevContainer User Date: Tue, 3 Mar 2026 18:42:49 +0000 Subject: [PATCH] feat: add Node.js 22 LTS to container image Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Dockerfile b/Dockerfile index 86090c9..ac46e48 100644 --- a/Dockerfile +++ b/Dockerfile @@ -59,6 +59,13 @@ exec /usr/bin/google-chrome-stable \\\n\ "$@"\n' > /usr/local/bin/google-chrome && \ chmod +x /usr/local/bin/google-chrome +# Install Node.js LTS via NodeSource +ARG NODE_MAJOR=22 +RUN curl -fsSL https://deb.nodesource.com/setup_${NODE_MAJOR}.x | bash - && \ + apt-get install -y nodejs && \ + rm -rf /var/lib/apt/lists/* && \ + node --version && npm --version + # Install Claude Code native binary (npm wrapper breaks remote control) RUN curl -fsSL https://claude.ai/install.sh | bash && \ cp /root/.local/bin/claude /usr/local/bin/claude && \