🔧 fix(docker): build shared-vite-config in storage-web Dockerfile

The vite config package exports from dist/ and needs to be built before
the web app can be built.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Till-JS 2026-02-11 18:05:07 +01:00
parent aab304fc95
commit 8ddc4eb907

View file

@ -49,6 +49,9 @@ COPY apps/storage/apps/web ./apps/storage/apps/web
RUN pnpm install --frozen-lockfile
# Build shared packages that need building
WORKDIR /app/packages/shared-vite-config
RUN pnpm build
WORKDIR /app/packages/shared-auth
RUN pnpm build || true