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 source
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
# Build frontend
|
# Build frontend (skip tsc in Docker — type checking is done in CI/local dev)
|
||||||
RUN bun run build
|
RUN bunx vite build
|
||||||
|
|
||||||
# Production stage
|
# Production stage
|
||||||
FROM oven/bun:1-slim AS production
|
FROM oven/bun:1-slim AS production
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue