From 9500021c3db950f646b125b5c519f32e1c277a41 Mon Sep 17 00:00:00 2001 From: Sergey Korotonozhko <_serezhka_@mail.ru> Date: Tue, 19 May 2026 16:28:47 +0300 Subject: [PATCH] fix: use npm install instead of npm ci for Docker build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a893aae..24f7cdd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:20-alpine AS frontend-builder WORKDIR /build COPY webui/package*.json ./ -RUN npm ci +RUN npm install COPY webui/ . RUN npm run build