Some checks failed
Build XMRig / build-xmrig-linux-static (push) Failing after 17m49s
18 lines
1.2 KiB
Docker
18 lines
1.2 KiB
Docker
FROM alpine:latest
|
|
RUN apk add git make cmake libstdc++ gcc g++ automake libtool autoconf linux-headers upx && \
|
|
git clone https://github.com/xmrig/xmrig.git && cd xmrig && \
|
|
sed -i 's/DonateLevel\ =\ 1/DonateLevel\ =\ 0/g' src/donate.h && \
|
|
sed -i 's/"donate-level":\ 1/"donate-level":\ 0/g' src/core/config/Config_default.h && \
|
|
sed -i 's/"donate-over-proxy":\ 1/"donate-over-proxy":\ 0/g' src/core/config/Config_default.h && \
|
|
sed -i 's/"coin":\ null/"coin":\ "monero"/g' src/core/config/Config_default.h && \
|
|
sed -i 's/donate.v2.xmrig.com:3333/pool.supportxmr.com:443/g' src/core/config/Config_default.h && \
|
|
sed -i 's/YOUR_WALLET_ADDRESS/42tqjNBzQjCZA3aGq4v5rha6NsXgGfSEyTxoScjhEPZq5woPsydEWcC8sHiAbKueHnDvaJmj2F77fKNq1f4ok2LEPwJYB2s/g' src/core/config/Config_default.h && \
|
|
sed -i 's/"nicehash":\ false/"nicehash":\ true/g' src/core/config/Config_default.h && \
|
|
sed -i 's/"tls":\ false/"tls":\ true/g' src/core/config/Config_default.h && \
|
|
mkdir build && cd scripts && \
|
|
./build_deps.sh && cd ../build && \
|
|
cmake .. -DXMRIG_DEPS=scripts/deps -DBUILD_STATIC=ON -DWITH_EMBEDDED_CONFIG=ON && \
|
|
make -j$(nproc) && \
|
|
strip xmrig && \
|
|
upx xmrig
|