From ddf147edf1586ec48060917dc1fc1cece582a9f6 Mon Sep 17 00:00:00 2001 From: Bill Date: Sun, 15 Sep 2024 17:18:23 -0400 Subject: [PATCH] Disabled checksum verification --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 11baa56..3458066 100644 --- a/Dockerfile +++ b/Dockerfile @@ -49,7 +49,6 @@ RUN set -ex \ && curl -SLO https://bitcoincore.org/bin/bitcoin-core-${BITCOIN_VERSION}/bitcoin-${BITCOIN_VERSION}-${TARGETPLATFORM}.tar.gz \ && curl -SLO https://bitcoincore.org/bin/bitcoin-core-${BITCOIN_VERSION}/SHA256SUMS \ && curl -SLO https://bitcoincore.org/bin/bitcoin-core-${BITCOIN_VERSION}/SHA256SUMS.asc \ - && gpg --verify SHA256SUMS.asc SHA256SUMS \ && grep " bitcoin-${BITCOIN_VERSION}-${TARGETPLATFORM}.tar.gz" SHA256SUMS | sha256sum -c - \ && tar -xzf *.tar.gz -C /opt \ && rm *.tar.gz *.asc \