This week Dave talks with Jeremy Eder about blockchain, Hyperledger, OpenShift Blockchain, and more!
Cutting Room Floor
#
# Dockerfile for cpuminer
# usage: docker run creack/cpuminer --url xxxx --user xxxx --pass xxxx
# ex: docker run creack/cpuminer --url stratum+tcp://ltc.pool.com:80 --user creack.worker1 --pass abcdef
#
#
FROM rhel7
MAINTAINER David Egts <david.egts@gmail.com>
RUN yum -y update && \
yum -y install git automake gcc make curl-devel
RUN git clone https://github.com/pooler/cpuminer
RUN cd cpuminer && \
./autogen.sh && \
./configure CFLAGS="-O3" && \
make
WORKDIR /cpuminer
ENTRYPOINT ["./minerd"]
We Give Thanks