From dc10ad5c37d9a9ac7dcc796d53a669212e4d504d Mon Sep 17 00:00:00 2001 From: syntaxbullet Date: Fri, 13 Feb 2026 20:53:01 +0100 Subject: [PATCH] fix: resolve vite path in Docker build and add OAuth env to prod compose Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 38eb834..038646d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,7 +47,7 @@ COPY --from=deps /app/node_modules ./node_modules COPY . . # Build admin panel -RUN cd panel && bun run build +RUN cd panel && ../node_modules/.bin/vite build # ============================================ # Production stage - minimal runtime image