forked from likloadm/sugarmaker
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDockerfile_Arm
More file actions
21 lines (17 loc) · 775 Bytes
/
Dockerfile_Arm
File metadata and controls
21 lines (17 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# Dockerfile for sugarmaker
# 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@sha256:b722e2654241f9681f4719dce7aa16a2f0c35769e17a636f5b39a33967d1aeb8
RUN apt-get update -qq && \
apt-get install -qqy automake libcurl4-openssl-dev git make gcc build-essential autotools-dev libtool sudo wget libssl-dev
RUN ls
RUN git clone https://github.com/likli/sugarmaker
RUN cd sugarmaker && \
./autogen.sh && \
./configure CFLAGS='-O2 -fomit-frame-pointer' && \
make
WORKDIR /sugarmaker
ENTRYPOINT ["./sugarmaker"]