From 53f90ce87f81c9be12a13ddfd7e1d307526fa1ec Mon Sep 17 00:00:00 2001 From: Till JS Date: Sat, 28 Mar 2026 22:18:28 +0100 Subject: [PATCH] fix(docker): add content package build step in zitare Dockerfile --- apps/zitare/apps/web/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/zitare/apps/web/Dockerfile b/apps/zitare/apps/web/Dockerfile index 13f0964f7..a11aa0087 100644 --- a/apps/zitare/apps/web/Dockerfile +++ b/apps/zitare/apps/web/Dockerfile @@ -12,6 +12,8 @@ COPY apps/zitare/apps/web ./apps/zitare/apps/web RUN --mount=type=cache,id=pnpm,target=/root/.local/share/pnpm/store \ pnpm install --no-frozen-lockfile --ignore-scripts +# Build app-specific packages (e.g. content with dist/ output) +RUN cd /app/apps/zitare/packages/content && pnpm build || true WORKDIR /app/apps/zitare/apps/web RUN pnpm exec svelte-kit sync RUN NODE_OPTIONS="--max-old-space-size=4096" pnpm build