chore: Update Dockerfile to replace npm run build with npx vite build for improved build process consistency
Publish Fast Tabler Docker image / build-and-push-fast (push) Failing after 6m54s

This commit is contained in:
2025-08-08 08:55:19 +07:00
parent a8c7d3e73e
commit 9d6cef6f9b
+1 -1
View File
@@ -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