Use bitcoincore.org download links

This commit is contained in:
Luke Childs 2023-01-21 14:04:00 +00:00
parent ef4cb3e895
commit c4ce472469

View File

@ -14,8 +14,8 @@ RUN cd /tmp && \
TARBALL="bitcoin-${VERSION}-${TARBALL_ARCH}.tar.gz" && \
apt-get update && \
apt-get install -y wget gpg && \
wget https://bitcoin.org/bin/bitcoin-core-${VERSION}/${TARBALL} && \
wget https://bitcoin.org/bin/bitcoin-core-${VERSION}/SHA256SUMS.asc && \
wget https://bitcoincore.org/bin/bitcoin-core-${VERSION}/${TARBALL} && \
wget https://bitcoincore.org/bin/bitcoin-core-${VERSION}/SHA256SUMS.asc && \
gpg --keyserver keyserver.ubuntu.com --recv-keys 01EA5486DE18A882D4C2684590C8019E36C2E964 && \
gpg --verify SHA256SUMS.asc && \
grep $TARBALL SHA256SUMS.asc | sha256sum -c && \