Skip to content

Commit a31305b

Browse files
authored
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 27b544f.
1 parent 4f26a7a commit a31305b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/db.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ========================================
22
# Dependencies Stage: Install Dependencies
33
# ========================================
4-
FROM oven/bun:alpine AS deps
4+
FROM oven/bun:1.2.21-alpine AS deps
55
WORKDIR /app
66

77
# Copy only package files needed for migrations
@@ -15,7 +15,7 @@ RUN bun install --omit dev --ignore-scripts && \
1515
# ========================================
1616
# Runner Stage: Production Environment
1717
# ========================================
18-
FROM oven/bun:alpine AS runner
18+
FROM oven/bun:1.2.21-alpine AS runner
1919
WORKDIR /app
2020

2121
# Copy only the necessary files from deps

0 commit comments

Comments
 (0)