Compare commits

...

1 commit

Author SHA1 Message Date
vince
631e789546 fix(web): skip install scripts in container deps stage 2026-06-20 13:14:45 +02:00
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ RUN bunx turbo prune @dimensionlab/web --docker
FROM base AS deps FROM base AS deps
COPY --from=pruner /repo/out/json/ ./ COPY --from=pruner /repo/out/json/ ./
RUN bun install --frozen-lockfile RUN bun install --frozen-lockfile --ignore-scripts
FROM deps AS build FROM deps AS build

View file

@ -195,7 +195,7 @@ describe("workspace boundaries", () => {
const sourceCopy = "COPY --from=pruner /repo/out/full/ ./"; const sourceCopy = "COPY --from=pruner /repo/out/full/ ./";
const tsconfigCopy = const tsconfigCopy =
"COPY --from=pruner /repo/tsconfig.base.json /repo/tsconfig.json ./"; "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("AS pruner");
expect(containerfile).toContain(pruneCommand); expect(containerfile).toContain(pruneCommand);