From 1c03fab43c3f1da4b585992e241f0f2204d115ee Mon Sep 17 00:00:00 2001 From: Esky33 Date: Mon, 14 Dec 2020 09:20:29 +0000 Subject: [PATCH] Update build-all-images.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit After digging around the codebase I Removed what I think are duplicates and a old RTL version Other checks needed here… Please!! @rockstardev .. Also I think the docker-gen generator needs to be double checked for bugs!! as this shouldn't happen.. please check these!! # Build tor # Build monero # Build lnd --- contrib/build-all-images.sh | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/contrib/build-all-images.sh b/contrib/build-all-images.sh index 2b1eeef..ae5deac 100644 --- a/contrib/build-all-images.sh +++ b/contrib/build-all-images.sh @@ -153,22 +153,6 @@ docker build -f "$DOCKERFILE" -t "acinq/eclair:release-0.4.1" . cd - && cd .. -# Build rtl -# https://raw.githubusercontent.com/ShahanaFarooqui/RTL/v0.8.2/Dockerfile -DOCKERFILE="Dockerfile" -# https://raw.githubusercontent.com/ShahanaFarooqui/RTL/v0.8.2/Dockerfile.arm32v7 -[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile.arm32v7" -# https://raw.githubusercontent.com/ShahanaFarooqui/RTL/v0.8.2/Dockerfile.arm64v8 -[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Dockerfile.arm64v8" -echo "Building shahanafarooqui/rtl:0.8.2" -git clone https://github.com/ShahanaFarooqui/RTL rtl -cd rtl -git checkout v0.8.2 -cd "$(dirname $DOCKERFILE)" -docker build -f "$DOCKERFILE" -t "shahanafarooqui/rtl:0.8.2" . -cd - && cd .. - - # Build lnd # https://raw.githubusercontent.com/btcpayserver/lnd/basedon-v0.11.0-beta/linuxamd64.Dockerfile DOCKERFILE="linuxamd64.Dockerfile" @@ -185,22 +169,6 @@ docker build -f "$DOCKERFILE" -t "btcpayserver/lnd:v0.11.0-beta" . cd - && cd .. -# Build rtl -# https://raw.githubusercontent.com/ShahanaFarooqui/RTL/v0.9.2/Dockerfile -DOCKERFILE="Dockerfile" -# https://raw.githubusercontent.com/ShahanaFarooqui/RTL/v0.9.2/Dockerfile.arm32v7 -[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile.arm32v7" -# https://raw.githubusercontent.com/ShahanaFarooqui/RTL/v0.9.2/Dockerfile.arm64v8 -[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Dockerfile.arm64v8" -echo "Building shahanafarooqui/rtl:0.9.2" -git clone https://github.com/ShahanaFarooqui/RTL rtl -cd rtl -git checkout v0.9.2 -cd "$(dirname $DOCKERFILE)" -docker build -f "$DOCKERFILE" -t "shahanafarooqui/rtl:0.9.2" . -cd - && cd .. - - # Build bitcoin # https://raw.githubusercontent.com/btcpayserver/dockerfile-deps/Bitcoin/0.20.1/Bitcoin/0.20.1/linuxamd64.Dockerfile DOCKERFILE="Bitcoin/0.20.1/linuxamd64.Dockerfile"