forked from ElementsProject/lightning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.builder.i386
38 lines (34 loc) · 959 Bytes
/
Dockerfile.builder.i386
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
38
FROM i386/ubuntu:16.04
MAINTAINER Christian Decker <[email protected]>
ENV DEBIAN_FRONTEND noninteractive
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-0.15.1/bitcoin-0.15.1-i686-pc-linux-gnu.tar.gz -O bitcoin.tar.gz && \
tar -xvzf bitcoin.tar.gz && \
mv /tmp/bitcoin-0.15.1/bin/bitcoin* /usr/local/bin/ && \
rm -rf bitcoin.tar.gz /tmp/bitcoin-0.15.1
RUN pip3 install python-bitcoinlib==0.7.0 pytest==3.0.5 setuptools==36.6.0 pytest-test-groups==1.0.3