mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 17:41:09 +02:00
fix(docker): drop stale shared-subscription-* COPY lines from sveltekit-base
The base image referenced packages/shared-subscription-types and packages/shared-subscription-ui, which were consolidated into packages/subscriptions a while back and no longer exist on disk. `build-app.sh --base` therefore failed every time with: failed to compute cache key: "/packages/shared-subscription-ui": not found That latent failure was harmless until today: the CSP fix for WebLLM in @mana/shared-utils never made it into the live mana-web container because shared-utils lives inside sveltekit-base:local (not COPYed by the per-app Dockerfile), and rebuilding the base was impossible. With the stale lines removed the base image rebuilds, picks up the current shared-utils, and downstream apps inherit the fixed CSP automatically. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
c5e5963cbe
commit
a9178ec2fb
1 changed files with 4 additions and 2 deletions
|
|
@ -44,8 +44,10 @@ COPY packages/shared-icons ./packages/shared-icons
|
|||
COPY packages/shared-pwa ./packages/shared-pwa
|
||||
COPY packages/shared-splitscreen ./packages/shared-splitscreen
|
||||
COPY packages/shared-stores ./packages/shared-stores
|
||||
COPY packages/shared-subscription-types ./packages/shared-subscription-types
|
||||
COPY packages/shared-subscription-ui ./packages/shared-subscription-ui
|
||||
# packages/shared-subscription-types and shared-subscription-ui were
|
||||
# consolidated into packages/subscriptions (copied below). Their stale
|
||||
# COPY lines broke `build-app.sh --base` on 2026-04-08, which blocked
|
||||
# updating the base image when shared-utils was changed.
|
||||
COPY packages/shared-tags ./packages/shared-tags
|
||||
COPY packages/shared-tailwind ./packages/shared-tailwind
|
||||
COPY packages/shared-theme ./packages/shared-theme
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue