1
0

Bump Thunderhub version (#1006)

* Update opt-add-thunderhub.yml

* Update README.md

* Update build-all-images.sh
This commit is contained in:
Anthony Potdevin
2025-08-27 15:36:11 +02:00
committed by GitHub
parent 5b4329c33b
commit c193cc6bdb
3 changed files with 8 additions and 8 deletions

View File

@@ -922,18 +922,18 @@ cd - && cd ..
# Build thunderhub
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.13.32/Dockerfile
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.14.2/Dockerfile
DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.13.32/Dockerfile
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.14.2/Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.13.32/Dockerfile
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.14.2/Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Dockerfile"
echo "Building apotdevin/thunderhub:base-v0.13.32"
echo "Building apotdevin/thunderhub:base-v0.14.2"
git clone https://github.com/apotdevin/thunderhub thunderhub
cd thunderhub
git checkout v0.13.32
git checkout v0.14.2
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "apotdevin/thunderhub:base-v0.13.32" .
docker build -f "$DOCKERFILE" -t "apotdevin/thunderhub:base-v0.14.2" .
cd - && cd ..