From 5a5636c7385efd892ce4848186fb8e75999428f0 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 20 May 2026 14:05:31 +0000 Subject: [PATCH] fix: use npm install instead of npm ci for build reliability --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9eee5ff..6367bbb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:20-alpine AS build WORKDIR /app COPY package*.json ./ -RUN npm ci +RUN npm install --prefer-offline COPY . . RUN npm run build