forked from effectsToCause/veriumMiner
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathDockerfile
More file actions
26 lines (20 loc) · 722 Bytes
/
Dockerfile
File metadata and controls
26 lines (20 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#
# 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 ubuntu:17.10
MAINTAINER Guillaume J. Charmes <guillaume@charmes.net>
RUN apt-get update -qq
RUN apt-get install -qqy automake
RUN apt-get install -qqy libcurl4-openssl-dev
RUN apt-get install -qqy git
RUN apt-get install -qqy build-essential
RUN apt-get install -qqy libssl-dev
RUN apt-get install -qqy libgmp-dev
RUN apt-get install -qqy libjansson-dev
RUN git clone https://github.com/fireworm71/veriumMiner
RUN cd veriumMiner && ./build.sh
WORKDIR /veriumMiner
ENTRYPOINT ["./cpuminer"]