From 1592162c5dd3fae86512ef272ec8910b3c38d876 Mon Sep 17 00:00:00 2001 From: zhao <70558837+fit2-zhao@users.noreply.github.com> Date: Fri, 8 May 2026 17:25:09 +0800 Subject: [PATCH] fix: update pnpm version to 10.4.1 in Dockerfile --- installer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/Dockerfile b/installer/Dockerfile index afdd0925a..529cf64db 100644 --- a/installer/Dockerfile +++ b/installer/Dockerfile @@ -2,7 +2,7 @@ FROM --platform=${BUILDPLATFORM} node:22-slim AS frontend WORKDIR /frontend COPY frontend /frontend -RUN npm install -g pnpm && \ +RUN npm install -g pnpm@10.4.1 && \ pnpm install && \ pnpm run build