mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
847df2eb1d
This was causing intermittent `rawtransactiondecode` errors see ElementsProject/lightning#332 Reported-by: @achow101 Signed-off-by: Christian Decker <decker.christian@gmail.com>
36 lines
843 B
Ruby
36 lines
843 B
Ruby
FROM ubuntu:16.04
|
|
MAINTAINER Christian Decker <decker.christian@gmail.com>
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
WORKDIR /build
|
|
|
|
RUN apt-get -qq update && \
|
|
apt-get -qq install --no-install-recommends --allow-unauthenticated -yy \
|
|
autoconf \
|
|
automake \
|
|
eatmydata \
|
|
software-properties-common \
|
|
build-essential \
|
|
autoconf \
|
|
libtool \
|
|
libprotobuf-c-dev \
|
|
libsqlite3-dev \
|
|
libgmp-dev \
|
|
libsqlite3-dev \
|
|
git \
|
|
python \
|
|
python3 \
|
|
valgrind \
|
|
net-tools \
|
|
python3-pip \
|
|
wget && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN cd /tmp/ && \
|
|
wget https://bitcoin.org/bin/bitcoin-core-0.15.0.1/bitcoin-0.15.0.1-x86_64-linux-gnu.tar.gz -O bitcoin.tar.gz && \
|
|
tar -xvzf bitcoin.tar.gz && \
|
|
mv /tmp/bitcoin-0.15.0/bin/bitcoin* /usr/local/bin/ && \
|
|
rm -rf bitcoin.tar.gz /tmp/bitcoin-0.15.0
|
|
|
|
RUN pip3 install python-bitcoinlib==0.7.0
|
|
|