fix(bun): pin bun version for db migrations (#1347)

* fix(migrations): downgrade nextjs

* fix(bun): pin bun version in db migrations

* Revert "fix(migrations): downgrade nextjs"

This reverts commit 27b544f22d.
This commit is contained in:
Waleed
2025-09-16 14:31:37 -07:00
committed by GitHub
parent 4f26a7aa73
commit a31305b7ee

View File

@@ -1,7 +1,7 @@
# ========================================
# Dependencies Stage: Install Dependencies
# ========================================
FROM oven/bun:alpine AS deps
FROM oven/bun:1.2.21-alpine AS deps
WORKDIR /app
# Copy only package files needed for migrations
@@ -15,7 +15,7 @@ RUN bun install --omit dev --ignore-scripts && \
# ========================================
# Runner Stage: Production Environment
# ========================================
FROM oven/bun:alpine AS runner
FROM oven/bun:1.2.21-alpine AS runner
WORKDIR /app
# Copy only the necessary files from deps