From b1b956f05b9f7e0289b3bd896ac9b9a66f2189e7 Mon Sep 17 00:00:00 2001 From: Denis Shatskiy Date: Fri, 8 Aug 2025 09:12:53 +0700 Subject: [PATCH] chore: Update Dockerfile to switch from npm ci to npm install for improved caching and dependency management --- Dockerfile.fast | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.fast b/Dockerfile.fast index e963b72..1e4c988 100644 --- a/Dockerfile.fast +++ b/Dockerfile.fast @@ -11,7 +11,7 @@ RUN npm config set registry https://registry.npmjs.org/ \ && npm config set fetch-retry-maxtimeout 120000 COPY frontend/package*.json ./ -RUN --mount=type=cache,target=/root/.npm npm ci --no-audit --no-fund +RUN --mount=type=cache,target=/root/.npm npm install --no-audit --no-fund COPY frontend/src/ ./src/ COPY frontend/public/ ./public/