Commit f96d817 1 parent c164a81 commit f96d817 Copy full SHA for f96d817
File tree 2 files changed +3
-693
lines changed
2 files changed +3
-693
lines changed Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ RUN KNOTS_MAJOR_VERSION=$(echo ${KNOTS_VERSION} | cut -c1-2) \
11
11
&& wget https://bitcoinknots.org/files/${KNOTS_MAJOR_VERSION}.x/${KNOTS_VERSION}/SHA256SUMS.asc \
12
12
&& wget https://bitcoinknots.org/files/${KNOTS_MAJOR_VERSION}.x/${KNOTS_VERSION}/bitcoin-${KNOTS_VERSION}.tar.gz
13
13
14
- COPY builder_pubkeys.pem .
15
-
16
14
RUN apk add --no-cache \
17
15
coreutils \
16
+ curl \
18
17
gnupg \
19
18
gnupg-keyboxd \
20
- && gpg --import builder_pubkeys.pem \
19
+ jq \
20
+ && curl -s https://api.github.com/repos/bitcoinknots/guix.sigs/contents/builder-keys | jq -r '.[].download_url' | while read url; do curl -s "$url" | gpg --import; done \
21
21
&& gpg --verify SHA256SUMS.asc SHA256SUMS \
22
22
&& sha256sum --ignore-missing -c SHA256SUMS
23
23
You can’t perform that action at this time.
0 commit comments