1
0

Bumping RTL to 0.8.4 (#348)

Resolves: #346

Co-authored-by: rockstardev <rockstardev@users.noreply.github.com>
This commit is contained in:
rockstardev
2020-08-07 04:16:33 -05:00
committed by rockstardev
parent f1f2016cdb
commit 6eda6df018
4 changed files with 9 additions and 9 deletions

View File

@@ -126,18 +126,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 ..