From 2523414234a8a19dd678ed2aa8afd68e573caa46 Mon Sep 17 00:00:00 2001 From: SysVis AI Date: Mon, 5 Jan 2026 18:40:19 +0700 Subject: [PATCH] fix: Use npm install in Dockerfile to fix cross-platform build issues --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f9e48b4..c044ce1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM node:20-alpine AS builder WORKDIR /app COPY package*.json ./ -RUN npm ci +RUN npm install COPY . . RUN npm run build