This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM debian:bullseye AS base | |
RUN apt update && apt install wget -y && apt clean | |
FROM base AS download | |
ENV version=0.5.17 | |
WORKDIR /app | |
RUN wget https://github.com/terra-money/core/releases/download/v${version}/terra_${version}_Linux_x86_64.tar.gz | |
RUN tar xvf terra_${version}_Linux_x86_64.tar.gz | |
RUN mkdir bin && mv ./terrad ./bin/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:20.04 AS base | |
RUN apt update && apt install wget libnuma-dev -y && apt clean | |
FROM base AS download | |
ENV version=1.2.4 | |
WORKDIR /app | |
RUN wget https://github.com/Chia-Network/bladebit/releases/download/v${version}/bladebit-v${version}-ubuntu-x86-64.tar.gz | |
RUN tar xvf bladebit-v${version}-ubuntu-x86-64.tar.gz | |
FROM base |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM debian:bullseye AS base | |
RUN apt update && apt install wget tini -y && apt clean | |
FROM base AS download | |
ENV version=0.17.0 | |
ENV version_rev=0.17.0.3 | |
WORKDIR /app | |
RUN wget https://github.com/dashpay/dash/releases/download/v${version_rev}/dashcore-${version_rev}-x86_64-linux-gnu.tar.gz | |
RUN tar xvf dashcore-${version_rev}-x86_64-linux-gnu.tar.gz | |
RUN mv dashcore-${version}/bin/dashd ./ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# BASE IMAGE | |
FROM ubuntu:20.04 AS base | |
ARG monero_version=0.17 | |
ENV DEBIAN_FRONTEND=noninteractive | |
# Environment variables | |
ENV MONERO_ARGS="--testnet" | |
ENV MONERO_WALLET_ARGS="--testnet" | |
ENV MONERO_POOL_WALLET="9tRe6v9cHkX7LZTS4hampTAai5kT1rLzddNkKKAiTAg1cg3GHB8zVkv8pBjQ9uzWpwQMZgxn99BDtR3Fy5HRGKURJ3AxUNH" | |
ENV MONERO_POOL_WALLET_SEED="swept upper silk slackens oval nostril narrate dude match pledge inwardly cuisine point soothe excess drunk mouth upgrade zero friendly catch alkaline sapling simplest upper" |
OlderNewer