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