From 8450b62f330aa335c009fd3c5a6932d8315661ab Mon Sep 17 00:00:00 2001 From: Denis Shatskiy Date: Mon, 7 Jul 2025 13:14:16 +0700 Subject: [PATCH] Fix(ci): Use npm ci for frontend dependencies --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d557cf7..6984e91 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app/frontend # Copy package config and install dependencies COPY frontend/package.json frontend/package-lock.json* ./ -RUN npm install +RUN npm ci # Copy rest of the frontend code and build COPY frontend/ .