From a0017adede968af53ee70de1f914470b4ead482c Mon Sep 17 00:00:00 2001 From: Z8MB1E Date: Sun, 17 May 2026 23:57:14 -0400 Subject: [PATCH] fix: missing Bun implementation in Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index e9e7a6c..46854e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,6 +35,7 @@ RUN \ if [ -f yarn.lock ]; then yarn run build; \ elif [ -f package-lock.json ]; then npm run build; \ elif [ -f pnpm-lock.yaml ]; then corepack enable pnpm && pnpm run build; \ + elif [ -f bun.lock ]; then corepack enable bun && bun run build; \ else echo "Lockfile not found." && exit 1; \ fi