From bc0322380adea0885057b541554884626417f14e Mon Sep 17 00:00:00 2001 From: zpc Date: Thu, 9 Apr 2026 14:26:10 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=90=8E=E7=AB=AF=E9=95=9C?= =?UTF-8?q?=E5=83=8F=E6=BA=90=E5=9C=B0=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- admin/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/Dockerfile b/admin/Dockerfile index 909717a..2cfa44c 100644 --- a/admin/Dockerfile +++ b/admin/Dockerfile @@ -2,7 +2,7 @@ FROM 192.168.195.25:19900/library/node:20-alpine AS build WORKDIR /app COPY package*.json ./ -RUN npm ci +RUN npm config set registry https://registry.npmmirror.com && npm ci COPY . . RUN npm run build