From 6bafcf35bd4a46525e08f5f78a28a2b8351b1d75 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Mon, 16 Feb 2026 18:52:38 -0700 Subject: [PATCH] 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 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 647c265..3b06a38 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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