fix(web): skip install scripts in container deps stage

This commit is contained in:
vince 2026-06-20 13:09:14 +02:00
parent 9acaa18e6d
commit d16ddc4561

View file

@ -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