This commit is contained in:
Pim van den Berg
2022-09-23 15:31:44 +02:00
commit 64e1fc08e4
6 changed files with 173 additions and 0 deletions

14
rebuild.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/sh
updates_available () {
docker pull "$1"
if test "$(docker run -it --rm "$1" /bin/sh -c 'apt -qqq update && apt -qq list --upgradable')" != ""; then
return 0
else
return 1
fi
}
if updates_available pommib/swiss:latest; then
./build.sh
fi