Skip to content

Commit 3488305

Browse files
committed
fix: pin Dockerfile bun version to match lockfile
oven/bun:1 resolved to 1.3.10 which considers the lockfile stale. Pin to 1.3.6 to match the version that generated bun.lock.
1 parent 73f69d5 commit 3488305

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/api/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM oven/bun:1 AS deps
1+
FROM oven/bun:1.3.6 AS deps
22
WORKDIR /app
33

44
COPY package.json bun.lock ./
@@ -18,7 +18,7 @@ COPY . .
1818
RUN bun run --filter @sandchest/contract build && \
1919
bun run --filter @sandchest/api build
2020

21-
FROM oven/bun:1-slim
21+
FROM oven/bun:1.3.6-slim
2222
WORKDIR /app
2323

2424
ENV NODE_ENV=production

0 commit comments

Comments
 (0)