-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathDockerfile
66 lines (51 loc) · 2.04 KB
/
Dockerfile
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
FROM ubuntu:latest as builder
MAINTAINER Christian Decker <[email protected]>
ARG LIGHTNINGD_VERSION=master
ENV DEBIAN_FRONTEND=noninteractiv
RUN apt-get update -qq \
&& apt-get install -y --no-install-recommends \
git build-essential autoconf automake build-essential git libtool libgmp-dev \
libsqlite3-dev python3 python3-mako net-tools zlib1g-dev libsodium-dev \
gettext apt-transport-https ca-certificates python3-pip wget
RUN git clone --recursive https://github.com/ElementsProject/lightning.git /tmp/lightning
WORKDIR /tmp/lightning
RUN git checkout $LIGHTNINGD_VERSION
RUN ./configure --prefix=/tmp/lightning_install --enable-developer --disable-valgrind --enable-experimental-features
RUN make -j $(nproc) install
FROM ubuntu:latest as final
COPY --from=builder /tmp/lightning_install/ /usr/local/
COPY --from=builder /tmp/lightning/ /usr/local/src/lightning/
RUN apt-get update -qq \
&& apt-get install -y --no-install-recommends \
libsqlite3-dev \
zlib1g-dev \
libsodium-dev \
libgmp-dev \
python3 \
python3-pip \
wget \
git \
tree \
&& rm -rf /var/lib/apt/lists/*
ARG BITCOIN_VERSION=24.0.1
ENV BITCOIN_TARBALL bitcoin-${BITCOIN_VERSION}-x86_64-linux-gnu.tar.gz
ENV BITCOIN_URL https://bitcoincore.org/bin/bitcoin-core-$BITCOIN_VERSION/$BITCOIN_TARBALL
RUN cd /tmp \
&& wget -qO $BITCOIN_TARBALL "$BITCOIN_URL" \
&& BD=bitcoin-$BITCOIN_VERSION/bin \
&& tar -xzvf $BITCOIN_TARBALL $BD/bitcoin-cli $BD/bitcoind --strip-components=1 \
&& cp bin/bitcoind bin/bitcoin-cli /usr/bin/ \
&& rm -rf $BITCOIN_TARBALL bin
# Make the debug logs available during testing
ENV TEST_DEBUG 1
# Speed up testing by shortening all timeouts
ENV DEVELOPER 1
WORKDIR /build
COPY . /build/
RUN git submodule update --init --recursive
ADD ci-requirements.txt /tmp/
RUN pip3 install /usr/local/src/lightning/contrib/pyln-client
RUN pip3 install /usr/local/src/lightning/contrib/pyln-testing
RUN pip3 install -r /tmp/ci-requirements.txt
RUN pip3 install git+https://github.com/joelklabo/python-nostr.git
CMD ["pytest", "-vvv", "-n=auto", "-k", "tests"]