1
0

chore: update to dash 20.1.0 (#888)

Co-authored-by: Andrew Camilleri <kukks@btcpayserver.org>
This commit is contained in:
strophy
2024-06-14 08:52:25 +02:00
committed by GitHub
parent b4373ce274
commit 8a62590c00
3 changed files with 9 additions and 9 deletions

View File

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