fix(ci): remove --frozen-lockfile to prevent bun version mismatch failures

CI uses bun 1.3.14 (stable) but local dev uses canary. Lockfile
format can differ between versions causing spurious failures.

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
MythEclipse
2026-06-15 00:57:31 +07:00
co-authored by Claude
parent 3d79b227d7
commit 3d3ca72230
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ COPY package.json bun.lock bunfig.toml tsconfig.base.json ./
COPY apps/api/package.json apps/api/package.json
COPY apps/web/package.json apps/web/package.json
COPY packages/shared/package.json packages/shared/package.json
RUN bun install --frozen-lockfile --production
RUN bun install --production
FROM oven/bun:1.3.14 AS runner
WORKDIR /app