From f2ea20c3ddf0922021b6241b2ef54ccd8618862e Mon Sep 17 00:00:00 2001 From: SAGE Date: Fri, 30 Jan 2026 01:10:38 +0800 Subject: [PATCH] Fixed node js installer --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 02c7d85d0..d9979b525 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,17 +3,17 @@ # https://github.com/sphinxcode/claude-code-server # ============================================================================ -FROM codercom/code-server:4.108.0 +FROM codercom/code-server:latest USER root # ============================================================================ # SYSTEM DEPENDENCIES -# Install gosu, Node.js 20, Python/uv, and essential tools -# Cache bust: 2026-01-29-v5 +# Install gosu, Node.js 22, Python/uv, and essential tools +# Cache bust: 2026-01-30-v6 # ============================================================================ -RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \ +RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \ && apt-get update \ && apt-get install -y --no-install-recommends \ gosu \