forked from UnitedBitcoin/UnitedBitcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev-Dockerfile
More file actions
11 lines (10 loc) · 725 Bytes
/
Copy pathdev-Dockerfile
File metadata and controls
11 lines (10 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
FROM ubuntu:16.04
RUN apt update -y
RUN apt install -y software-properties-common
RUN add-apt-repository -y ppa:bitcoin/bitcoin
RUN apt-get update -y
RUN apt-get install -y libboost1.58-all-dev libminiupnpc-dev libssl-dev libevent-dev libzmq3-dev libprotobuf-dev protobuf-compiler libqrencode-dev libtool build-essential bsdmainutils g++
RUN apt-get install -y libdb4.8-dev libdb4.8++-dev --allow-unauthenticated
RUN apt-get install -y autoconf make g++ pkg-config git
RUN apt-get install -y cmake libncurses5-dev libreadline-dev
RUN mkdir -p build && cd build && git clone https://github.com/UnitedBitcoin/fc.git && cd fc && git submodule update --init --recursive && cmake . && make && make install && cd ../..