1
0

chore: update Dash to 20.0.2 (#855)

Co-authored-by: ktechmidas <daniel@ktechmidas.net>
This commit is contained in:
ktechmidas
2024-01-03 03:20:04 +00:00
committed by GitHub
parent bff2102d42
commit 0ce063e8f0
3 changed files with 9 additions and 9 deletions

View File

@@ -210,16 +210,16 @@ cd - && cd ..
# Build dash
# https://raw.githubusercontent.com/btcpayserver/dockerfile-deps/Dash/19.2.0/Dash/19.2.0/linuxamd64.Dockerfile
DOCKERFILE="Dash/19.2.0/linuxamd64.Dockerfile"
# https://raw.githubusercontent.com/btcpayserver/dockerfile-deps/Dash/19.2.0/Dash/19.2.0/linuxarm64v8.Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Dash/19.2.0/linuxarm64v8.Dockerfile"
echo "Building btcpayserver/dash:19.2.0"
# https://raw.githubusercontent.com/btcpayserver/dockerfile-deps/Dash/20.0.2/Dash/20.0.2/linuxamd64.Dockerfile
DOCKERFILE="Dash/20.0.2/linuxamd64.Dockerfile"
# https://raw.githubusercontent.com/btcpayserver/dockerfile-deps/Dash/20.0.2/Dash/20.0.2/linuxarm64v8.Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Dash/20.0.2/linuxarm64v8.Dockerfile"
echo "Building btcpayserver/dash:20.0.2"
git clone https://github.com/btcpayserver/dockerfile-deps dash
cd dash
git checkout Dash/19.2.0
git checkout Dash/20.0.2
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "btcpayserver/dash:19.2.0" .
docker build -f "$DOCKERFILE" -t "btcpayserver/dash:20.0.2" .
cd - && cd ..