From 1f29fd070bd2ecb7e192ac6a003f098a26b3a054 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=CC=81o=20Haf?= Date: Fri, 18 Oct 2024 21:44:44 +0200 Subject: [PATCH] switch to knots --- Dockerfile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 52948b6..222f00f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -86,9 +86,9 @@ RUN echo "Deriving tarball name from \$TARGETPLATFORM" && \ echo "Tarball name: $(cat /tarball-name)" RUN echo "Downloading release assets" -RUN wget https://bitcoincore.org/bin/bitcoin-core-${VERSION}/$(cat /tarball-name) -RUN wget https://bitcoincore.org/bin/bitcoin-core-${VERSION}/SHA256SUMS.asc -RUN wget https://bitcoincore.org/bin/bitcoin-core-${VERSION}/SHA256SUMS +RUN wget https://bitcoinknots.org/files/27.x/27.1.knots20240801/$(cat /tarball-name) +RUN wget https://bitcoinknots.org/files/27.x/27.1.knots20240801/SHA256SUMS.asc +RUN wget https://bitcoinknots.org/files/27.x/27.1.knots20240801/SHA256SUMS RUN echo "Downloaded release assets:" && ls RUN echo "Verifying PGP signatures" @@ -107,6 +107,10 @@ RUN tar -zxvf $(cat /tarball-name) --strip-components=1 # Final image FROM debian:stable-slim +RUN apt update + +RUN apt install curl -y + COPY --from=builder /build/bin/bitcoind /bin COPY --from=builder /build/bin/bitcoin-cli /bin