Skip to content

Commit

Permalink
Apply CLN fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mrfelton committed Jun 7, 2024
1 parent 363bf69 commit 162ed57
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docker/lndk/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,17 @@ WORKDIR /usr/src
# Grab and install the latest version of lndk
RUN git clone https://github.com/lndk-org/lndk.git . \
&& git reset --hard ${LNDK_REF} \
# Setup git user to ensure we can cherry-pick
&& git config --global user.email "[email protected]" \
&& git config --global user.name "Tom Kirkpatrick" \
# Add the orbitalturtle remote
&& git remote add orbitalturtle https://github.com/orbitalturtle/lndk.git \
&& git fetch --all \
# https://github.com/lndk-org/lndk/pull/115
&& git cherry-pick d84344b27a022bc97b658222e185556d7a71d563 \
af227ee2d66710aa4e4b3f4f1c31b6d79fa88271 \
4a367e92321a07ae62712ed651430e55075740cc \
c7244b153aee227166d1bb4236597cc49caad267 \
&& cargo build --release

# Copy the compiled binaries to /bin/
Expand Down

0 comments on commit 162ed57

Please sign in to comment.