From 6464a01e7b9e67ea410f167e2f3c1c9355943f47 Mon Sep 17 00:00:00 2001 From: Till JS Date: Wed, 25 Mar 2026 13:01:17 +0100 Subject: [PATCH] fix(storage): add shared-pwa build step and help packages to web Dockerfile The shared-pwa package exports from dist/ and needs to be built before the storage-web app. Also adds shared-help-types, shared-help-ui, and shared-help-content COPY statements for the new help pages. Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/storage/apps/web/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/storage/apps/web/Dockerfile b/apps/storage/apps/web/Dockerfile index fc3c36ae3..8ec9fcb9b 100644 --- a/apps/storage/apps/web/Dockerfile +++ b/apps/storage/apps/web/Dockerfile @@ -30,6 +30,9 @@ COPY packages/shared-branding ./packages/shared-branding COPY packages/shared-error-tracking ./packages/shared-error-tracking COPY packages/shared-feedback-service ./packages/shared-feedback-service COPY packages/shared-feedback-ui ./packages/shared-feedback-ui +COPY packages/shared-help-content ./packages/shared-help-content +COPY packages/shared-help-types ./packages/shared-help-types +COPY packages/shared-help-ui ./packages/shared-help-ui COPY packages/shared-i18n ./packages/shared-i18n COPY packages/shared-icons ./packages/shared-icons COPY packages/shared-profile-ui ./packages/shared-profile-ui @@ -60,6 +63,9 @@ RUN pnpm build || true WORKDIR /app/packages/shared-error-tracking RUN pnpm build +WORKDIR /app/packages/shared-pwa +RUN pnpm build + # Build the web app WORKDIR /app/apps/storage/apps/web RUN pnpm exec svelte-kit sync