From 7fe4662dbc817fe437272ebbc6ae4c934fccc2d1 Mon Sep 17 00:00:00 2001 From: Till JS Date: Wed, 1 Apr 2026 21:55:20 +0200 Subject: [PATCH] fix(manacore/web): add app-specific packages to Dockerfile for production build The unified app depends on @calc/shared, @clock/shared, and @zitare/content which live under apps/*/packages/ and aren't included in the sveltekit-base image. Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/manacore/apps/web/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/manacore/apps/web/Dockerfile b/apps/manacore/apps/web/Dockerfile index 33b3059f2..2e04bf2cb 100644 --- a/apps/manacore/apps/web/Dockerfile +++ b/apps/manacore/apps/web/Dockerfile @@ -11,6 +11,9 @@ ENV MIDDLEWARE_URL=$MIDDLEWARE_URL ENV PUBLIC_SYNC_SERVER_URL=$PUBLIC_SYNC_SERVER_URL COPY apps/manacore/apps/web ./apps/manacore/apps/web +COPY apps/calc/packages/shared ./apps/calc/packages/shared +COPY apps/clock/packages/shared ./apps/clock/packages/shared +COPY apps/zitare/packages/content ./apps/zitare/packages/content RUN --mount=type=cache,id=pnpm,target=/root/.local/share/pnpm/store \ pnpm install --no-frozen-lockfile --ignore-scripts