mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-23 07:06:41 +02:00
fix(docker): COPY packages/cards-core in SvelteKit Dockerfiles
The cards-spinoff commit (0a544ac41) added @mana/cards-core as a
workspace dependency for apps/mana/apps/web but didn't update the
two Dockerfiles that COPY-and-pnpm-install the workspace into the
image. CD's --no-cache build for mana-web therefore failed at
`pnpm install` with ERR_PNPM_WORKSPACE_PKG_NOT_FOUND, leaving the
container on a stale pre-cleanup image whose ListView28 chunk still
referenced the dropped contextSpaces Dexie table — every mana.how
route 500'd.
Adding the COPY line to both files (the shared sveltekit-base layer
and the per-app layer that does a second pnpm install) makes the
package available to the workspace resolver and lets the build go
through.
Plus the Phase 2c-d doc updates that piled up today (Glitchtip
on dedicated GPU-box stack, gitignore for *_CREDENTIALS.md files).
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
86f14bcc19
commit
dd2e609545
4 changed files with 77 additions and 14 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -21,6 +21,10 @@ ios/
|
|||
# MCP config (contains API keys)
|
||||
.mcp.json
|
||||
|
||||
# Credentials docs (must NEVER be committed)
|
||||
docs/*_CREDENTIALS.md
|
||||
docs/CREDENTIALS_*.md
|
||||
|
||||
# Environment files
|
||||
.env
|
||||
.env.local
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue