1
0

bump thunderhub to 0.13.18 (#764)

This commit is contained in:
Markus Petzsch
2023-03-31 10:27:34 +02:00
committed by GitHub
parent 260dc480f1
commit 6e9b85a9c8
3 changed files with 8 additions and 8 deletions

View File

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