From b4f1a2858d243d98fb81e2c4e8ee9aeae0dac094 Mon Sep 17 00:00:00 2001 From: Denis Shatskiy Date: Wed, 9 Jul 2025 08:48:56 +0700 Subject: [PATCH] chore: Remove production flag from npm ci in Dockerfile.fast for improved dependency installation --- Dockerfile.fast | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.fast b/Dockerfile.fast index 6e8a3f0..5947b75 100644 --- a/Dockerfile.fast +++ b/Dockerfile.fast @@ -12,7 +12,7 @@ RUN npm config set fetch-retry-maxtimeout 120000 COPY frontend/package*.json ./ # Install dependencies with specific flags for speed -RUN npm ci --only=production --no-audit --no-fund --prefer-offline +RUN npm ci --no-audit --no-fund --prefer-offline # Copy source code COPY frontend/ .