mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-07 03:19:30 +00:00
351436a258
* De-duplicate Dockerfiles by using a bash file to concatenate common parts Resolves #375. Dockerfiles are still committed to the repo to avoid a dependency on bash. * Add a CI job to confirm the committed dockerfiles are the currently generated ones * Create dedicated Dockerfiles per processor network Ensures the compromising of network-specific dependencies doesn't lead to a compromise of the build process for all processors. * Dockerfile corrections * Correct call to build processor Docker image in tests/processor
22 lines
984 B
Text
22 lines
984 B
Text
FROM alpine:latest as bitcoin
|
|
|
|
ENV BITCOIN_VERSION=25.1
|
|
|
|
RUN apk --no-cache add git gnupg
|
|
|
|
# Download Bitcoin
|
|
RUN wget https://bitcoincore.org/bin/bitcoin-core-${BITCOIN_VERSION}/bitcoin-${BITCOIN_VERSION}-x86_64-linux-gnu.tar.gz \
|
|
&& wget https://bitcoincore.org/bin/bitcoin-core-${BITCOIN_VERSION}/SHA256SUMS \
|
|
&& wget https://bitcoincore.org/bin/bitcoin-core-${BITCOIN_VERSION}/SHA256SUMS.asc
|
|
|
|
# Verify all sigs and check for a valid signature from laanwj -- 71A3
|
|
RUN git clone https://github.com/bitcoin-core/guix.sigs && \
|
|
cd guix.sigs/builder-keys && \
|
|
find . -iname '*.gpg' -exec gpg --import {} \; && \
|
|
gpg --verify --status-fd 1 --verify ../../SHA256SUMS.asc ../../SHA256SUMS | grep "^\[GNUPG:\] VALIDSIG.*71A3B16735405025D447E8F274810B012346C9A6"
|
|
|
|
RUN grep bitcoin-${BITCOIN_VERSION}-x86_64-linux-gnu.tar.gz SHA256SUMS | sha256sum -c
|
|
|
|
# Prepare Image
|
|
RUN tar xzvf bitcoin-${BITCOIN_VERSION}-x86_64-linux-gnu.tar.gz
|
|
RUN mv bitcoin-${BITCOIN_VERSION}/bin/bitcoind .
|