From 4f40fdafae3663f97aa3f526290ace281fc88741 Mon Sep 17 00:00:00 2001 From: Till JS Date: Thu, 23 Apr 2026 23:19:02 +0200 Subject: [PATCH] fix(mana-web): copy packages/website-blocks into the build context The Dockerfile's per-app COPY list hadn't been updated after website- blocks was added as a workspace dep. Docker's build context excludes any package the Dockerfile doesn't explicitly bring in, so `pnpm install` bailed with ERR_PNPM_WORKSPACE_PKG_NOT_FOUND for @mana/website-blocks and the whole build tree (incl. mana-auth built in parallel) got cancelled. Co-Authored-By: Claude Opus 4.7 (1M context) --- apps/mana/apps/web/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/mana/apps/web/Dockerfile b/apps/mana/apps/web/Dockerfile index 9e1d061eb..fc9e9c277 100644 --- a/apps/mana/apps/web/Dockerfile +++ b/apps/mana/apps/web/Dockerfile @@ -19,6 +19,7 @@ COPY packages/local-stt ./packages/local-stt COPY packages/shared-llm ./packages/shared-llm COPY packages/shared-ai ./packages/shared-ai COPY packages/shared-crypto ./packages/shared-crypto +COPY packages/website-blocks ./packages/website-blocks RUN --mount=type=cache,id=pnpm,target=/root/.local/share/pnpm/store \ pnpm install --no-frozen-lockfile --ignore-scripts