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:
parent
3ba98da1a8
commit
6bafcf35bd
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue