Use three separate commands within the Bitcoin Dockerfile to download the release

Attempts to debug which is failing, as right now, the command as a whole is within the CI.
This commit is contained in:
Luke Parker
2025-08-10 11:37:32 -04:00
parent 75c38560f4
commit 0780deb643

View File

@@ -12,9 +12,9 @@ ENV BITCOIN_VERSION=27.1
RUN apk --no-cache add git gnupg RUN apk --no-cache add git gnupg
# Download Bitcoin # Download Bitcoin
RUN wget https://bitcoincore.org/bin/bitcoin-core-${BITCOIN_VERSION}/bitcoin-${BITCOIN_VERSION}-$(uname -m)-linux-gnu.tar.gz \ RUN wget https://bitcoincore.org/bin/bitcoin-core-${BITCOIN_VERSION}/bitcoin-${BITCOIN_VERSION}-$(uname -m)-linux-gnu.tar.gz
&& wget https://bitcoincore.org/bin/bitcoin-core-${BITCOIN_VERSION}/SHA256SUMS \ RUN wget https://bitcoincore.org/bin/bitcoin-core-${BITCOIN_VERSION}/SHA256SUMS
&& wget https://bitcoincore.org/bin/bitcoin-core-${BITCOIN_VERSION}/SHA256SUMS.asc RUN wget https://bitcoincore.org/bin/bitcoin-core-${BITCOIN_VERSION}/SHA256SUMS.asc
# Verify all sigs and check for a valid signature from laanwj -- 71A3 # Verify all sigs and check for a valid signature from laanwj -- 71A3
RUN git clone https://github.com/bitcoin-core/guix.sigs && \ RUN git clone https://github.com/bitcoin-core/guix.sigs && \