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 631e789546
2 changed files with 2 additions and 2 deletions

View file

@ -195,7 +195,7 @@ describe("workspace boundaries", () => {
const sourceCopy = "COPY --from=pruner /repo/out/full/ ./";
const tsconfigCopy =
"COPY --from=pruner /repo/tsconfig.base.json /repo/tsconfig.json ./";
const installCommand = "RUN bun install --frozen-lockfile";
const installCommand = "RUN bun install --frozen-lockfile --ignore-scripts";
expect(containerfile).toContain("AS pruner");
expect(containerfile).toContain(pruneCommand);