fix: skip tsc in Docker build to avoid bun-types conflict

Type checking runs locally/CI. The Docker build just needs vite build.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-02-16 18:52:38 -07:00
parent 3ba98da1a8
commit 6bafcf35bd
1 changed files with 2 additions and 2 deletions

View File

@ -13,8 +13,8 @@ RUN bun install --frozen-lockfile
# Copy source
COPY . .
# Build frontend
RUN bun run build
# Build frontend (skip tsc in Docker — type checking is done in CI/local dev)
RUN bunx vite build
# Production stage
FROM oven/bun:1-slim AS production