fix(citycorners): build shared-pwa package in web Dockerfile

The shared-pwa package was missing from the Dockerfile build steps,
causing the web container build to fail on esbuild resolution.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-03-25 12:54:34 +01:00
parent d8886346ad
commit 5833b05a8f

View file

@ -52,6 +52,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/citycorners/apps/web
RUN pnpm exec svelte-kit sync