CentOS base image with BitCoin compiled from source: FROM ubuntu MAINTAINER [email protected] RUN apt-get update RUN apt-get install -y build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev RUN apt-get install -y bsdmainutils libqt5gui5 libqt5core5a libqt5dbus5 qttools5 -dev qttools5-dev-tools libprotobuf-dev protobuf-compiler RUN apt-get install -y git wget libqrencode-dev autoconf openssl libssl-dev libe vent-dev libminiupnpc-dev RUN cd /root;git clone https://github.com/bitcoin/bitcoin.git RUN mkdir /root/bitcoin/db4/ RUN cd /root;wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz' RUN cd /root;tar -xzvf db-4.8.30.NC.tar.gz RUN cd /root/db-4.8.30.NC/build_unix/;../dist/configure --enable-cxx --disable-s hared --with-pic --prefix=/root/bitcoin/db4/;make install RUN cd /root/bitcoin;./autogen.sh;./configure LDFLAGS="-L/root/bitcoin/db4/lib/" CPPFLAGS="-I/root/bitcoin/db4/include/";make -s -j5;make install RUN cd /root;rm -f db-4.8.30.NC.tar.gz;rm -rf /root/db-4.8.30.NC/ ENTRYPOINT /root/bitcoin/src/bitcoind
Content type
Image
Digest
Size
1.2 GB
Last updated
over 8 years ago
docker pull drakeg/bitcoin