2022-01-18 13:29:55 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# Rebuild all docker images
|
2024-01-26 04:51:27 +00:00
|
|
|
# Run after: images-base-update
|
|
|
|
|
2022-01-18 13:29:55 +00:00
|
|
|
for dir in ci-*; do
|
|
|
|
echo "Build $dir"
|
|
|
|
cd "$dir"
|
2024-01-26 04:51:27 +00:00
|
|
|
# Do not build images with any stale branch snapshot, scripts ran
|
|
|
|
# locally will update that as needed
|
|
|
|
rm devel.tar.gz
|
2022-01-18 13:29:55 +00:00
|
|
|
./docker-build
|
|
|
|
cd ..
|
|
|
|
done
|