1
0

Update opt-add-thunderhub.yml (#997)

* Update opt-add-thunderhub.yml

* Update README.md

* Update build-all-images.sh
This commit is contained in:
Anthony Potdevin
2025-06-25 02:21:11 +02:00
committed by GitHub
parent f1905f9ec6
commit 6bdd29295a
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.31/Dockerfile
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.13.32/Dockerfile
DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.13.31/Dockerfile
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.13.32/Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.13.31/Dockerfile
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.13.32/Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Dockerfile"
echo "Building apotdevin/thunderhub:base-v0.13.31"
echo "Building apotdevin/thunderhub:base-v0.13.32"
git clone https://github.com/apotdevin/thunderhub thunderhub
cd thunderhub
git checkout v0.13.31
git checkout v0.13.32
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "apotdevin/thunderhub:base-v0.13.31" .
docker build -f "$DOCKERFILE" -t "apotdevin/thunderhub:base-v0.13.32" .
cd - && cd ..