From d16ddc4561940e6018dfc5253ac22917c49b1533 Mon Sep 17 00:00:00 2001 From: vince Date: Sat, 20 Jun 2026 13:09:14 +0200 Subject: [PATCH] fix(web): skip install scripts in container deps stage --- apps/web/Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/Containerfile b/apps/web/Containerfile index 9ec2baa..32387a4 100644 --- a/apps/web/Containerfile +++ b/apps/web/Containerfile @@ -11,7 +11,7 @@ RUN bunx turbo prune @dimensionlab/web --docker FROM base AS deps COPY --from=pruner /repo/out/json/ ./ -RUN bun install --frozen-lockfile +RUN bun install --frozen-lockfile --ignore-scripts FROM deps AS build