From 517e8ca04bf48cf138e2ccc45a2e2ad54b166fd0 Mon Sep 17 00:00:00 2001 From: Haitao Pan Date: Sat, 6 Dec 2025 16:25:40 +0800 Subject: [PATCH] dashboard: drop registry override and clean up build steps --- dashboard/Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/dashboard/Dockerfile b/dashboard/Dockerfile index 1b85ab0..50c5e14 100644 --- a/dashboard/Dockerfile +++ b/dashboard/Dockerfile @@ -20,13 +20,10 @@ RUN apt-get update \ && corepack enable \ && corepack prepare yarn@4.12.0 --activate -RUN yarn config set npmRegistryServer https://registry.npmmirror.com - # Copy monorepo 内容 COPY . . # 安装完整依赖(包含 devDependencies) -# ⚡ 使用 Turbopack 编译并启用 standalone 输出 RUN find . -name "package-lock.json" -delete RUN yarn install --immutable RUN yarn next build