mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
136a5f2b74
Now that 0.16.0 is stable we should make use of it Signed-off-by: Christian Decker <decker.christian@gmail.com>
41 lines
1.1 KiB
Docker
41 lines
1.1 KiB
Docker
FROM i386/ubuntu:16.04
|
|
MAINTAINER Christian Decker <decker.christian@gmail.com>
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
ENV BITCOIN_VERSION 0.16.0
|
|
WORKDIR /build
|
|
|
|
RUN apt-get -qq update && \
|
|
apt-get -qq install --no-install-recommends --allow-unauthenticated -yy \
|
|
autoconf \
|
|
automake \
|
|
clang \
|
|
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 \
|
|
python3-setuptools \
|
|
python-pkg-resources \
|
|
wget && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN cd /tmp/ && \
|
|
wget https://bitcoin.org/bin/bitcoin-core-$BITCOIN_VERSION/bitcoin-$BITCOIN_VERSION-i686-pc-linux-gnu.tar.gz -O bitcoin.tar.gz && \
|
|
tar -xvzf bitcoin.tar.gz && \
|
|
mv /tmp/bitcoin-$BITCOIN_VERSION/bin/bitcoin* /usr/local/bin/ && \
|
|
rm -rf bitcoin.tar.gz /tmp/bitcoin-$BITCOIN_VERSION
|
|
|
|
RUN pip3 install --upgrade pip && \
|
|
pip3 install python-bitcoinlib==0.7.0 pytest==3.0.5 setuptools==36.6.0 pytest-test-groups==1.0.3 flake8==3.5.0 pytest-rerunfailures==3.1
|