Skip to content

Instantly share code, notes, and snippets.

@nullstyle
Forked from alexellis/Dockerfile
Created November 17, 2016 17:28
Show Gist options
  • Save nullstyle/e98b149458ffc91000b4d87941257fec to your computer and use it in GitHub Desktop.
Save nullstyle/e98b149458ffc91000b4d87941257fec 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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment