fix(docker): copy pnpm-workspace.yaml into deps stage

The build-allow config lives in pnpm-workspace.yaml, but the deps
stage only copied package.json and pnpm-lock.yaml — so the
container saw no allowlist and pnpm install failed on ignored
build scripts.
This commit is contained in:
Julien Calixte
2026-05-13 18:49:23 +02:00
parent abc0113c8e
commit 453332513a

View File

@@ -5,7 +5,7 @@ RUN corepack enable
WORKDIR /app
COPY package.json pnpm-lock.yaml ./
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./
RUN pnpm install --frozen-lockfile