From 76ee60d9b8691f91b6593ec8d5bff7eca2580e88 Mon Sep 17 00:00:00 2001 From: Lakshya Singh Date: Sat, 23 Sep 2023 15:32:28 +0530 Subject: [PATCH 1/2] chore: update branch and deps for core-lightning - branch was deleted added new - update deps Signed-off-by: Lakshya Singh --- lightningd/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lightningd/Dockerfile b/lightningd/Dockerfile index ba2bc81..2db94a4 100644 --- a/lightningd/Dockerfile +++ b/lightningd/Dockerfile @@ -14,6 +14,7 @@ RUN apk update && \ cargo \ gettext \ git \ + gmp-dev \ libsodium \ libtool \ net-tools \ @@ -26,7 +27,7 @@ RUN apk update && \ zlib-dev \ zlib-static -RUN git clone -b 2023-08-remote-hsmd-v23.08rc3 --recursive https://github.com/lightning-signer/c-lightning.git /repo --recursive && \ +RUN git clone -b 2023-08-remote-hsmd-v23.08 --recursive https://github.com/lightning-signer/c-lightning.git /repo --recursive && \ cd /repo && \ ./configure --enable-static --prefix=/usr && \ make -j $(nproc) && \ @@ -103,4 +104,4 @@ HEALTHCHECK --interval=30s --timeout=10s --start-period=30s \ CMD lighting-cli --testnet getinfo ENTRYPOINT ["/entrypoint.sh"] -CMD ["lightningd"] \ No newline at end of file +CMD ["lightningd"] From 13d248adaa9b78c3403c36a18bca759d6204daf2 Mon Sep 17 00:00:00 2001 From: Lakshya Singh Date: Sat, 23 Sep 2023 15:33:17 +0530 Subject: [PATCH 2/2] chore: clboss change to main repo - https://github.com/ZmnSCPxj/clboss/pull/179 is merged Signed-off-by: Lakshya Singh --- lightningd/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightningd/Dockerfile b/lightningd/Dockerfile index 2db94a4..d8df184 100644 --- a/lightningd/Dockerfile +++ b/lightningd/Dockerfile @@ -42,7 +42,7 @@ RUN apk add \ pkgconf \ sqlite-dev -RUN git clone -b 2023-09-gnuc-version --recurse-submodules https://github.com/ksedgwic/clboss.git /clboss && \ +RUN git clone --recurse-submodules https://github.com/ZmnSCPxj/clboss.git /clboss && \ cd /clboss && \ autoreconf -i && \ ./configure --prefix=/usr && \