fix: upgrade Bun setup version to latest to support modern lockfile format

This commit is contained in:
MythEclipse
2026-05-18 08:53:44 +07:00
parent c0827b09c5
commit 910d29d5b9
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
# Stage 1: Builder
FROM oven/bun:1.1-alpine AS builder
FROM oven/bun:alpine AS builder
WORKDIR /usr/src/app
@@ -16,7 +16,7 @@ RUN bun run lint
RUN bun run build
# Stage 2: Runner
FROM oven/bun:1.1-slim AS runner
FROM oven/bun:slim AS runner
WORKDIR /usr/src/app