Skip to content

Commit 10bc2b0

Browse files
committed
docker: Update Bitcoin Core to v0.19.1 and c-lightning to v0.8.1
1 parent d9f8c18 commit 10bc2b0

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

Dockerfile

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,23 @@ RUN apt-get update && apt-get install -y --no-install-recommends git \
99
$([ -n "$STANDALONE" ] || echo "autoconf automake build-essential gettext libtool libgmp-dev \
1010
libsqlite3-dev python python3 python3-mako wget zlib1g-dev")
1111

12-
ENV LIGHTNINGD_VERSION=v0.8.0
13-
ENV LIGHTNINGD_PGP_KEY=B7C4BE81184FC203D52C35C51416D83DC4F0E86D
12+
ENV LIGHTNINGD_VERSION=v0.8.1
13+
ENV LIGHTNINGD_PGP_KEY=15EE8D6CAB0E7F0CF999BFCBD9200E6CD1ADB8F1
1414

1515
RUN [ -n "$STANDALONE" ] || ( \
1616
git clone https://github.com/ElementsProject/lightning.git /opt/lightningd \
1717
&& cd /opt/lightningd \
1818
&& gpg --keyserver keyserver.ubuntu.com --recv-keys "$LIGHTNINGD_PGP_KEY" \
1919
&& git verify-tag $LIGHTNINGD_VERSION \
2020
&& git checkout $LIGHTNINGD_VERSION \
21-
# `sed` below needed for v0.7.2, can be removed in v0.7.3.
22-
# see https://github.com/ElementsProject/lightning/issues/2970, https://github.com/ElementsProject/lightning/pull/2967
23-
&& sed -i 's#$(EXTERNAL_HEADERS)#$(EXTERNAL_HEADERS) tools/test/gen_test.h#' tools/test/Makefile \
2421
&& DEVELOPER=$DEVELOPER ./configure \
2522
&& make)
2623

2724
# Install bitcoind
28-
ENV BITCOIN_VERSION 0.19.0.1
25+
ENV BITCOIN_VERSION 0.19.1
2926
ENV BITCOIN_FILENAME bitcoin-$BITCOIN_VERSION-x86_64-linux-gnu.tar.gz
3027
ENV BITCOIN_URL https://bitcoincore.org/bin/bitcoin-core-$BITCOIN_VERSION/$BITCOIN_FILENAME
31-
ENV BITCOIN_SHA256 732cc96ae2e5e25603edf76b8c8af976fe518dd925f7e674710c6c8ee5189204
28+
ENV BITCOIN_SHA256 5fcac9416e486d4960e1a946145566350ca670f9aaba99de6542080851122e4c
3229
ENV BITCOIN_ASC_URL https://bitcoincore.org/bin/bitcoin-core-$BITCOIN_VERSION/SHA256SUMS.asc
3330
ENV BITCOIN_PGP_KEY 01EA5486DE18A882D4C2684590C8019E36C2E964
3431
RUN [ -n "$STANDALONE" ] || \

0 commit comments

Comments
 (0)