From 9e490942af2e58fc7b1250ef3c054faa649bd632 Mon Sep 17 00:00:00 2001 From: Alex Myers Date: Thu, 15 Jan 2026 15:17:35 -0600 Subject: [PATCH] contrib: ignore cache when rebuilding docker builder images This caused issues when dependencies were updated do to cached images continuing to be used. Changelog-None --- contrib/cl-repro.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/cl-repro.sh b/contrib/cl-repro.sh index 87e61412f..1911328dc 100755 --- a/contrib/cl-repro.sh +++ b/contrib/cl-repro.sh @@ -23,5 +23,5 @@ for v in focal jammy noble; do sudo docker run ubuntu:$v cat /etc/lsb-release echo "Building CL repro $v:" # shellcheck disable=SC2024 - sudo docker build -t cl-repro-$v - < "$LIGHTNING_DIR"/contrib/reprobuild/Dockerfile.$v + sudo docker build --no-cache -t cl-repro-$v - < "$LIGHTNING_DIR"/contrib/reprobuild/Dockerfile.$v done