Skip to content

Instantly share code, notes, and snippets.

@0wnrepo
Forked from alexellis/Dockerfile
Last active December 25, 2017 20:56
Show Gist options
  • Save 0wnrepo/67e592e02d207e7de9ad53cbfb0f578d to your computer and use it in GitHub Desktop.
Save 0wnrepo/67e592e02d207e7de9ad53cbfb0f578d 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 curl
WORKDIR /root/
RUN git clone https://github.com/zcash/zcash.git
WORKDIR /root/zcash/
RUN ./zcutil/fetch-params.sh
RUN ./zcutil/build.sh --disable-rust -j$(nproc)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment