From 5165c9aa7d3a54d92752f756527abedfeb19eae9 Mon Sep 17 00:00:00 2001 From: Bill Date: Sun, 15 Sep 2024 16:24:31 -0400 Subject: [PATCH] Updated GPG key fingerprint --- Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Dockerfile b/Dockerfile index 17999cc..e41b391 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,6 +19,16 @@ ENV PATH=/opt/bitcoin-${BITCOIN_VERSION}/bin:$PATH RUN set -ex \ && if [ "${TARGETPLATFORM}" = "linux/amd64" ]; then export TARGETPLATFORM=x86_64-linux-gnu; fi \ + && for key in \ + 01EA5486DE18A882D4C2684590C8019E36C2E964 \ + ; do \ + gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key" || \ + gpg --batch --keyserver keys.openpgp.org --recv-keys "$key" || \ + gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \ + gpg --batch --keyserver keyserver.pgp.com --recv-keys "$key" || \ + gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$key" || \ + gpg --batch --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys "$key" ; \ + done \ && 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 \