From 81ecf3999d22a2a97e7f45c4104ff53228fcde24 Mon Sep 17 00:00:00 2001 From: Wang Zhuoxuan Date: Fri, 17 Apr 2026 16:04:34 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=AD=A3=20Dockerfile=20?= =?UTF-8?q?=E4=B8=AD=20lockfile=20=E6=96=87=E4=BB=B6=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit bun.lockb → bun.lock(适配 Bun 1.1+ 文本格式) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 375dc7e..e61d590 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM oven/bun:1.1 AS base WORKDIR /app # 复制依赖文件 -COPY package.json bun.lockb ./ +COPY package.json bun.lock ./ # 阶段 2: 安装依赖 FROM base AS install