Compare commits

..

2 Commits

Author SHA1 Message Date
ddf147edf1 Disabled checksum verification
All checks were successful
Build / build (push) Successful in 1m44s
2024-09-15 17:18:23 -04:00
8f8b01a4dd Removed expired signing key 2024-09-15 17:18:07 -04:00

View File

@@ -35,7 +35,6 @@ RUN set -ex \
74E2DEF5D77260B98BC19438099BAD163C70FBFA \
79D00BAC68B56D422F945A8F8E3A8F3247DBCBBF \
28E72909F1717FE9607754F8A7BEB2621678D37D \
ED9BDF7AD6A55E232E84524257FF9BDBCC301009 \
3EB0DEE6004A13BE5A0CC758BF2978B068054311 \
287AE4CA1187C68C08B49CB2D11BD4F33F1DB499 \
F4FC70F07310028424EFC20A8E4256593F177720 \
@@ -50,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 \