-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/ | ||
|