mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 04:09:23 +00:00
Replace busybox wget with wget on alpine to attempt to resolve DNS issues
See https://github.com/alpinelinux/docker-alpine/issues/155.
This commit is contained in:
@@ -9,7 +9,7 @@ FROM alpine:latest AS bitcoin
|
|||||||
|
|
||||||
ENV BITCOIN_VERSION=27.1
|
ENV BITCOIN_VERSION=27.1
|
||||||
|
|
||||||
RUN apk --no-cache add git gnupg
|
RUN apk --no-cache add wget git gnupg
|
||||||
|
|
||||||
# Download Bitcoin
|
# Download Bitcoin
|
||||||
RUN wget https://bitcoincore.org/bin/bitcoin-core-${BITCOIN_VERSION}/bitcoin-${BITCOIN_VERSION}-$(uname -m)-linux-gnu.tar.gz
|
RUN wget https://bitcoincore.org/bin/bitcoin-core-${BITCOIN_VERSION}/bitcoin-${BITCOIN_VERSION}-$(uname -m)-linux-gnu.tar.gz
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ FROM alpine:latest AS lighthouse
|
|||||||
|
|
||||||
ENV LIGHTHOUSE_VERSION=5.1.3
|
ENV LIGHTHOUSE_VERSION=5.1.3
|
||||||
|
|
||||||
RUN apk --no-cache add git gnupg
|
RUN apk --no-cache add wget git gnupg
|
||||||
|
|
||||||
# Download lighthouse
|
# Download lighthouse
|
||||||
RUN wget https://github.com/sigp/lighthouse/releases/download/v${LIGHTHOUSE_VERSION}/lighthouse-v${LIGHTHOUSE_VERSION}-$(uname -m)-unknown-linux-gnu.tar.gz
|
RUN wget https://github.com/sigp/lighthouse/releases/download/v${LIGHTHOUSE_VERSION}/lighthouse-v${LIGHTHOUSE_VERSION}-$(uname -m)-unknown-linux-gnu.tar.gz
|
||||||
|
|||||||
@@ -25,6 +25,8 @@ FROM alpine:latest AS nimbus
|
|||||||
ENV NIMBUS_VERSION=24.3.0
|
ENV NIMBUS_VERSION=24.3.0
|
||||||
ENV NIMBUS_COMMIT=dc19b082
|
ENV NIMBUS_COMMIT=dc19b082
|
||||||
|
|
||||||
|
RUN apk --no-cache add wget
|
||||||
|
|
||||||
# Download nimbus
|
# Download nimbus
|
||||||
RUN wget https://github.com/status-im/nimbus-eth2/releases/download/v${{NIMBUS_VERSION}}/nimbus-eth2_Linux_{platform}_${{NIMBUS_VERSION}}_${{NIMBUS_COMMIT}}.tar.gz
|
RUN wget https://github.com/status-im/nimbus-eth2/releases/download/v${{NIMBUS_VERSION}}/nimbus-eth2_Linux_{platform}_${{NIMBUS_VERSION}}_${{NIMBUS_COMMIT}}.tar.gz
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ FROM alpine:latest AS reth
|
|||||||
|
|
||||||
ENV RETH_VERSION=0.2.0-beta.6
|
ENV RETH_VERSION=0.2.0-beta.6
|
||||||
|
|
||||||
RUN apk --no-cache add git gnupg
|
RUN apk --no-cache add wget git gnupg
|
||||||
|
|
||||||
# Download reth
|
# Download reth
|
||||||
RUN wget https://github.com/paradigmxyz/reth/releases/download/v${RETH_VERSION}/reth-v${RETH_VERSION}-$(uname -m)-unknown-linux-gnu.tar.gz
|
RUN wget https://github.com/paradigmxyz/reth/releases/download/v${RETH_VERSION}/reth-v${RETH_VERSION}-$(uname -m)-unknown-linux-gnu.tar.gz
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ fn monero_internal(
|
|||||||
let download_monero = format!(r#"
|
let download_monero = format!(r#"
|
||||||
FROM alpine:latest AS monero
|
FROM alpine:latest AS monero
|
||||||
|
|
||||||
RUN apk --no-cache add gnupg
|
RUN apk --no-cache add wget gnupg
|
||||||
|
|
||||||
# Download Monero
|
# Download Monero
|
||||||
RUN wget https://downloads.getmonero.org/cli/monero-linux-{arch}-v{MONERO_VERSION}.tar.bz2
|
RUN wget https://downloads.getmonero.org/cli/monero-linux-{arch}-v{MONERO_VERSION}.tar.bz2
|
||||||
|
|||||||
Reference in New Issue
Block a user