Skip to content

Instantly share code, notes, and snippets.

@alexellis
Last active September 30, 2021 10:54
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 9 You must be signed in to fork a gist
  • Save alexellis/4aa99cb62ba44572488bb958eb2a5fd1 to your computer and use it in GitHub Desktop.
Save alexellis/4aa99cb62ba44572488bb958eb2a5fd1 to your computer and use it in GitHub Desktop.
ZCash Dockerfile - installs and builds ZCash tool and pulls proving cert.
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)
@alexellis
Copy link
Author

Hey @wmark did you mean to leave a comment along with your link? Thanks for the interest.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment