1
0

bump thunderhub

This commit is contained in:
nicolas.dorier
2020-08-17 09:06:44 +09:00
parent c0805e4949
commit a249252f6c
3 changed files with 14 additions and 14 deletions

View File

@@ -186,18 +186,18 @@ cd - && cd ..
# Build rtl
# https://raw.githubusercontent.com/ShahanaFarooqui/RTL/v0.8.2/Dockerfile
# https://raw.githubusercontent.com/ShahanaFarooqui/RTL/v0.8.4/Dockerfile
DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/ShahanaFarooqui/RTL/v0.8.2/Dockerfile.arm32v7
# https://raw.githubusercontent.com/ShahanaFarooqui/RTL/v0.8.4/Dockerfile.arm32v7
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile.arm32v7"
# https://raw.githubusercontent.com/ShahanaFarooqui/RTL/v0.8.2/Dockerfile.arm64v8
# https://raw.githubusercontent.com/ShahanaFarooqui/RTL/v0.8.4/Dockerfile.arm64v8
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Dockerfile.arm64v8"
echo "Building shahanafarooqui/rtl:0.8.2"
echo "Building shahanafarooqui/rtl:0.8.4"
git clone https://github.com/ShahanaFarooqui/RTL rtl
cd rtl
git checkout v0.8.2
git checkout v0.8.4
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "shahanafarooqui/rtl:0.8.2" .
docker build -f "$DOCKERFILE" -t "shahanafarooqui/rtl:0.8.4" .
cd - && cd ..
@@ -672,18 +672,18 @@ cd - && cd ..
# Build thunderhub
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.8.13/Dockerfile
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.9.3/Dockerfile
DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.8.13/arm32v7.Dockerfile
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.9.3/arm32v7.Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="arm32v7.Dockerfile"
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.8.13/arm64v8.Dockerfile
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.9.3/arm64v8.Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="arm64v8.Dockerfile"
echo "Building apotdevin/thunderhub:v0.8.13"
echo "Building apotdevin/thunderhub:v0.9.3"
git clone https://github.com/apotdevin/thunderhub thunderhub
cd thunderhub
git checkout v0.8.13
git checkout v0.9.3
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "apotdevin/thunderhub:v0.8.13" .
docker build -f "$DOCKERFILE" -t "apotdevin/thunderhub:v0.9.3" .
cd - && cd ..