mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 00:21:09 +02:00
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) <noreply@anthropic.com>
This commit is contained in:
parent
00ddd1e4ea
commit
4f40fdafae
1 changed files with 1 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue