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
This commit is contained in:
Alex Myers
2026-01-15 15:17:35 -06:00
committed by ShahanaFarooqui
parent ae0e10875c
commit 9e490942af

View File

@@ -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