fix: 修正 Dockerfile 中 lockfile 文件名
Some checks failed
CI/CD Pipeline / Unit Tests (push) Has been cancelled
CI/CD Pipeline / Code Quality (push) Has been cancelled
CI/CD Pipeline / Build Test Image (push) Has been cancelled
CI/CD Pipeline / Build Production Image (push) Has been cancelled
CI/CD Pipeline / Deploy to Test (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled

bun.lockb → bun.lock(适配 Bun 1.1+ 文本格式)
This commit is contained in:
Wang Zhuoxuan 2026-04-17 16:04:34 +08:00
parent f6ce7ce431
commit 81ecf3999d

View File

@ -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