fix: Use npm install in Dockerfile to fix cross-platform build issues

This commit is contained in:
SysVis AI 2026-01-05 18:40:19 +07:00
parent 5af1e14750
commit 2523414234

View file

@ -4,7 +4,7 @@ FROM node:20-alpine AS builder
WORKDIR /app WORKDIR /app
COPY package*.json ./ COPY package*.json ./
RUN npm ci RUN npm install
COPY . . COPY . .
RUN npm run build RUN npm run build