fix(ci): remove bun.lock from Docker COPY to avoid version mismatch

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
MythEclipse
2026-06-15 01:17:25 +07:00
co-authored by Claude
parent 02ae022174
commit 05055ed9cf
2 changed files with 3 additions and 5 deletions
+1 -2
View File
@@ -1,11 +1,10 @@
FROM oven/bun:1.3.14 AS builder
WORKDIR /app
COPY package.json bun.lock bunfig.toml tsconfig.base.json ./
COPY package.json bunfig.toml tsconfig.base.json ./
COPY packages/shared/package.json packages/shared/package.json
COPY apps/web/package.json apps/web/package.json
COPY apps/api/package.json apps/api/package.json
ENV BUN_INSTALL_FROZEN_LOCKFILE=0
RUN bun install
COPY packages/shared packages/shared