1
0

Bump clightning

This commit is contained in:
nicolas.dorier
2024-12-23 10:16:49 +09:00
parent 7df47fa680
commit 02edbeaf8e
3 changed files with 8 additions and 8 deletions

View File

@@ -46,18 +46,18 @@ cd - && cd ..
# Build lightning
# https://raw.githubusercontent.com/btcpayserver/lightning/basedon-v24.05/Dockerfile
# https://raw.githubusercontent.com/btcpayserver/lightning/basedon-v24.08.2/Dockerfile
DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/btcpayserver/lightning/basedon-v24.05/Dockerfile
# https://raw.githubusercontent.com/btcpayserver/lightning/basedon-v24.08.2/Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/btcpayserver/lightning/basedon-v24.05/Dockerfile
# https://raw.githubusercontent.com/btcpayserver/lightning/basedon-v24.08.2/Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Dockerfile"
echo "Building btcpayserver/lightning:v24.05"
echo "Building btcpayserver/lightning:v24.08.2"
git clone https://github.com/btcpayserver/lightning lightning
cd lightning
git checkout basedon-v24.05
git checkout basedon-v24.08.2
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "btcpayserver/lightning:v24.05" .
docker build -f "$DOCKERFILE" -t "btcpayserver/lightning:v24.08.2" .
cd - && cd ..