From 64c08f10243269a9c85e6356374dff17b7334410 Mon Sep 17 00:00:00 2001 From: Nikhil Woodruff Date: Sun, 28 Dec 2025 22:47:19 +0000 Subject: [PATCH] fix: pin Bun to 1.1.42 (1.3.5 has Next.js segfault) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0240cbd..38fc883 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -# Build docs -FROM oven/bun:1 AS docs-builder +# Build docs (pin Bun version - 1.3.5 has segfault bugs with Next.js) +FROM oven/bun:1.1.42 AS docs-builder WORKDIR /docs COPY docs/package.json docs/bun.lock ./ RUN bun install