switch to knots

This commit is contained in:
Léo Haf 2024-10-18 21:44:44 +02:00
parent 9c5e3f5f71
commit 1f29fd070b
Signed by: Retropex
GPG Key ID: 0E37EBAB8574F005

View File

@ -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