-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdockerfile
37 lines (19 loc) · 848 Bytes
/
dockerfile
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
27
28
29
30
31
32
33
34
35
36
37
FROM ubuntu:18.04
WORKDIR /root/
RUN apt-get -y update
RUN apt-get install --fix-missing
RUN apt-get install -y build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils
RUN apt-get install -y libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev
RUN apt-get install -y software-properties-common
RUN add-apt-repository -y ppa:bitcoin/bitcoin
RUN apt-get -y update
RUN apt-get install -y libdb4.8-dev libdb4.8++-dev
RUN apt-get install -y libminiupnpc-dev
RUN apt-get install -y libzmq3-dev
RUN apt install -y git
RUN git clone https://github.com/VSolidus/solidus.git && cd solidus
RUN chmod +x autogen.sh ./share/genbuild.sh
RUN ./autogen.sh
RUN ./configure --disable-tests --disable-bench
RUN make
RUN make install