From 9d6cef6f9b4226e7ee48c4469dd55bfefe59979e Mon Sep 17 00:00:00 2001 From: Denis Shatskiy Date: Fri, 8 Aug 2025 08:55:19 +0700 Subject: [PATCH] chore: Update Dockerfile to replace npm run build with npx vite build for improved build process consistency --- Dockerfile.fast | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.fast b/Dockerfile.fast index f9cabeb..a144829 100644 --- a/Dockerfile.fast +++ b/Dockerfile.fast @@ -21,7 +21,7 @@ COPY frontend/eslint.config.js ./ ENV ROLLUP_SKIP_NODEJS_NATIVE=1 ENV ROLLUP_NO_NATIVE=1 -RUN npm run build +RUN npx vite build # Stage 2: Install backend deps on glibc FROM node:20-bookworm-slim AS backend-builder