Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apply CLN fixes #15

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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