From 502811ca9f3441df683bcdafaa12ae9644312fd5 Mon Sep 17 00:00:00 2001 From: Izan Gil <66965250+SrIzan10@users.noreply.github.com> Date: Thu, 2 Apr 2026 17:44:54 +0200 Subject: [PATCH] fix: disable scripts --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 16b7a03..38d051a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN bun add -g @sern/cli # Install dependencies FROM base AS deps COPY package.json bun.lock ./ -RUN bun install --frozen-lockfile +RUN bun install --frozen-lockfile --ignore-scripts # Build the application FROM base AS build