update: npm registry

This commit is contained in:
tao.chen
2026-08-11 16:19:34 +08:00
parent b49d804718
commit ec9effc254
+2 -1
View File
@@ -1,7 +1,8 @@
FROM node-pnpm-base:24.18.1 AS frontend-build
WORKDIR /app
COPY frontend/package.json frontend/pnpm-lock.yaml ./
RUN pnpm install --frozen-lockfile
RUN pnpm config set registry https://registry.npmmirror.com && \
pnpm install --frozen-lockfile
COPY frontend/ ./
RUN pnpm typecheck && pnpm build