From b17f1025e571887f8d01754ac005aedc5d990828 Mon Sep 17 00:00:00 2001 From: Will Wang Date: Wed, 19 Nov 2025 10:44:47 -0800 Subject: [PATCH] Add node 24 and 26 --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2b39f572..78043d13 100644 --- a/Dockerfile +++ b/Dockerfile @@ -134,7 +134,7 @@ RUN apt-get update \ "$pyv/bin/pip" install --no-cache-dir --no-compile ruff black mypy pyright isort pytest; \ done \ && rm -rf /root/.cache/pip ~/.cache/pip ~/.cache/pipx - + # Reduce the verbosity of uv - impacts performance of stdout buffering ENV UV_NO_PROGRESS=1 @@ -159,6 +159,8 @@ RUN git -c advice.detachedHead=0 clone --branch "$NVM_VERSION" --depth 1 https:/ && nvm install 18 && nvm use 18 && npm install -g npm@10.9 pnpm@10.12 && corepack enable && corepack install -g yarn \ && nvm install 20 && nvm use 20 && npm install -g npm@11.4 pnpm@10.12 && corepack enable && corepack install -g yarn \ && nvm install 22 && nvm use 22 && npm install -g npm@11.4 pnpm@10.12 && corepack enable && corepack install -g yarn \ + && nvm install 24 && nvm use 24 && npm install -g npm@11.4 pnpm@10.12 && corepack enable && corepack install -g yarn \ + && nvm install 26 && nvm use 26 && npm install -g npm@11.4 pnpm@10.12 && corepack enable && corepack install -g yarn \ && nvm alias default "$NODE_VERSION" \ && nvm cache clear \ && npm cache clean --force || true \