You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

17 lines
359 B

FROM ubuntu:19.10
RUN \
apt-get update \
&& apt-get install -y git build-essential cmake libuv1-dev libssl-dev libhwloc-dev \
&& git clone https://github.com/xmrig/xmrig.git /root/xmrig \
&& mkdir /root/xmrig/build \
&& cd /root/xmrig/build \
&& cmake .. \
&& make
COPY start_mining .
RUN chmod +x start_mining
ENTRYPOINT ["./start_mining"]