From 852bda73f66df45afbc802c684a86a314e8b4ea7 Mon Sep 17 00:00:00 2001 From: Claude Code Date: Thu, 5 Mar 2026 16:53:56 +0100 Subject: [PATCH] fix: remove slow Kaniko snapshot-mode=redo and compressed-caching flags These flags caused build time regression from ~2:48 to 6:30. snapshot-mode=redo does full filesystem walks per layer (slowest mode). Default time-based mode is much faster for CI builds. --- .gitlab-ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 365e3c6..6e0b0f9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -58,6 +58,4 @@ docker-build: --build-arg "VITE_APP_VERSION=$VERSION" \ --cache=true \ --cache-repo="$IMAGE_NAME/cache" \ - --snapshot-mode=redo \ - --compressed-caching=false \ $DESTINATIONS