From c341a2ae40c41d6d78612ffb4e8ee66ef372fa82 Mon Sep 17 00:00:00 2001 From: Z8MB1E Date: Mon, 18 May 2026 00:00:04 -0400 Subject: [PATCH] chore: alter bun implementation in Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 46854e1..973b999 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ RUN \ if [ -f yarn.lock ]; then yarn --frozen-lockfile; \ elif [ -f package-lock.json ]; then npm ci; \ elif [ -f pnpm-lock.yaml ]; then corepack enable pnpm && pnpm i --frozen-lockfile; \ - elif [ -f bun.lock ]; then corepack enable bun && bun install --frozen-lockfile; \ + elif [ -f bun.lock ]; then bun install --frozen-lockfile; \ else echo "Lockfile not found." && exit 1; \ fi @@ -35,7 +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; \ + elif [ -f bun.lock ]; then bun run build; \ else echo "Lockfile not found." && exit 1; \ fi