Skip to content

Commit 4bedc3a

Browse files
Fix broken build due to bun lockfile not being used (#62)
1 parent b6757f7 commit 4bedc3a

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.changeset/fair-impalas-agree.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@cloudflare/sandbox": patch
3+
---
4+
5+
Fix broken build due to bun lockfile not being used

packages/sandbox/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ RUN python3 --version && \
8282
jupyter kernelspec list
8383

8484
# Copy container source files to server directory
85-
COPY container_src/package.json ./
86-
RUN bun install
85+
COPY container_src/package.json container_src/bun.lock ./
86+
RUN bun install --frozen-lockfile
8787

8888
COPY container_src/ ./
8989

0 commit comments

Comments
 (0)