]>
Commit | Line | Data |
---|---|---|
bda8844a TP |
1 | # Usage: docker build . |
2 | # Usage: docker run tpruvot/cpuminer-multi -a xevan --url=stratum+tcp://yiimp.ccminer.org:3739 --user=iGadPnKrdpW3pcdVC3aA77Ku4anrzJyaLG --pass=x | |
b089cc9f | 3 | |
bda8844a TP |
4 | FROM ubuntu:14.04 |
5 | MAINTAINER Tanguy Pruvot <[email protected]> | |
b089cc9f LJ |
6 | |
7 | RUN apt-get update -qq | |
8 | ||
bda8844a | 9 | RUN apt-get install -qy automake autoconf pkg-config libcurl4-openssl-dev libssl-dev libjansson-dev libgmp-dev make g++ git |
b089cc9f | 10 | |
bda8844a | 11 | RUN git clone https://github.com/tpruvot/cpuminer-multi -b linux |
b089cc9f | 12 | |
bda8844a | 13 | RUN cd cpuminer-multi && ./build.sh |
b089cc9f | 14 | |
bda8844a | 15 | WORKDIR /cpuminer-multi |
e7670e80 | 16 | ENTRYPOINT ["./cpuminer"] |