fix(web-docker): copy packages/shared-ai into build context

Webapp package.json gained a @mana/shared-ai workspace dep (Mission
Grant types + canonical HKDF derivation). Without the package in the
Dockerfile COPY list, pnpm install aborts with
ERR_PNPM_WORKSPACE_PKG_NOT_FOUND. Caught during the first mana-web
rebuild after the Mission Grant rollout.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-04-15 15:07:41 +02:00
parent 572820f3d6
commit eb30d49501

View file

@ -17,6 +17,7 @@ COPY packages/shared-uload ./packages/shared-uload
COPY packages/local-llm ./packages/local-llm
COPY packages/local-stt ./packages/local-stt
COPY packages/shared-llm ./packages/shared-llm
COPY packages/shared-ai ./packages/shared-ai
RUN --mount=type=cache,id=pnpm,target=/root/.local/share/pnpm/store \
pnpm install --no-frozen-lockfile --ignore-scripts