From 16c2ebd808d5828869f00125b68c6c2927b2a8b0 Mon Sep 17 00:00:00 2001 From: kkfluous Date: Fri, 5 Jun 2026 16:33:52 +0800 Subject: [PATCH] fix: set CI=true and pin pnpm@9 in Dockerfile to fix Docker build --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 265e97a..ae51f2e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,14 @@ FROM node:22-alpine as builder +ENV CI=true + WORKDIR /usr/src/app COPY . . -RUN npm install pnpm -g +RUN npm install pnpm@9 -g && rm -f pnpm-lock.yaml -RUN pnpm install +RUN pnpm install --no-frozen-lockfile RUN pnpm build