Follow the full tutorial at http://blog.alexellis.io/mine-zcash-with-docker/
UPDATE FOR Zcash 1.0.14-rc1
| 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) |
Follow the full tutorial at http://blog.alexellis.io/mine-zcash-with-docker/
UPDATE FOR Zcash 1.0.14-rc1