1
0

Bump ThunderHub (#1009)

* Update opt-add-thunderhub.yml

* Update build-all-images.sh

* Update README.md
This commit is contained in:
Anthony Potdevin
2025-09-11 05:44:52 -06:00
committed by GitHub
parent ca60e0e18e
commit b0a7f2c9f0
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.14.2/Dockerfile
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.14.6/Dockerfile
DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.14.2/Dockerfile
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.14.6/Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.14.2/Dockerfile
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.14.6/Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Dockerfile"
echo "Building apotdevin/thunderhub:base-v0.14.2"
echo "Building apotdevin/thunderhub:base-v0.14.6"
git clone https://github.com/apotdevin/thunderhub thunderhub
cd thunderhub
git checkout v0.14.2
git checkout v0.14.6
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "apotdevin/thunderhub:base-v0.14.2" .
docker build -f "$DOCKERFILE" -t "apotdevin/thunderhub:base-v0.14.6" .
cd - && cd ..