Skip to content

Commit 4364b08

Browse files
authored
Create Dockerfile
1 parent b1ca544 commit 4364b08

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM ubuntu:20.04
2+
RUN apt-get update -y
3+
RUN apt-get install wget build-essential -y
4+
WORKDIR /opt/
5+
RUN wget https://github.com/dashpay/dash/releases/download/v22.1.2/dashcore-22.1.2-x86_64-linux-gnu.tar.gz
6+
RUN tar zxvf dashcore-22.1.2-x86_64-linux-gnu.tar.gz
7+
RUN mv dashcore-22.1.2/bin/* /usr/bin/
8+
RUN wget https://raw.githubusercontent.com/TheRetroMike/rmt-nomp/master/scripts/blocknotify.c
9+
RUN gcc blocknotify.c -o /usr/bin/blocknotify
10+
CMD /usr/bin/dashd -printtoconsole

0 commit comments

Comments
 (0)