Follow the full tutorial at http://blog.alexellis.io/mine-zcash-with-docker/
Last active
September 30, 2021 10:54
-
-
Save alexellis/4aa99cb62ba44572488bb958eb2a5fd1 to your computer and use it in GitHub Desktop.
ZCash Dockerfile - installs and builds ZCash tool and pulls proving cert.
This file contains 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:latest | |
RUN apt-get update -q && apt-get -qy install \ | |
build-essential pkg-config libc6-dev m4 g++-multilib \ | |
autoconf libtool ncurses-dev unzip git python \ | |
zlib1g-dev wget bsdmainutils automake | |
WORKDIR /root/ | |
RUN git clone https://github.com/zcash/zcash.git | |
WORKDIR /root/zcash/ | |
RUN git checkout v1.0.0-rc4 | |
RUN ./zcutil/fetch-params.sh | |
RUN ./zcutil/build.sh -j$(nproc) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://github.com/wmark/docker-zcash/blob/master/Dockerfile