nolambocoin new miner
Some checks are pending
Build CPU miner / build (push) Waiting to run

This commit is contained in:
w12
2025-01-01 20:47:22 +01:00
commit e0dd59f90e
7388 changed files with 1263698 additions and 0 deletions

22
Dockerfile Normal file
View File

@@ -0,0 +1,22 @@
#
# 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:16.04
MAINTAINER kanon <60179867+decryp2kanon@users.noreply.github.com>
RUN apt-get update -qq && \
apt-get install -qqy automake libcurl4-openssl-dev git make gcc
RUN git clone https://github.com/decryp2kanon/sugarmaker
RUN cd sugarmaker && \
./autogen.sh && \
./configure CFLAGS='-O2 -fomit-frame-pointer' && \
make
WORKDIR /sugarmaker
ENTRYPOINT ["./sugarmaker"]