-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
6e58d93
commit 8ae6b0f
Showing
4 changed files
with
46 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: cln | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
force: | ||
type: boolean | ||
description: Force build | ||
required: false | ||
default: false | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- docker/cln/** | ||
|
||
jobs: | ||
build: | ||
uses: ./.github/workflows/bake.yml | ||
secrets: inherit | ||
with: | ||
path: docker/cln | ||
target: release |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
ARG VERSION | ||
|
||
FROM elementsproject/lightningd:${VERSION} as builder | ||
|
||
FROM lnmarkets/debian:bookworm | ||
|
||
RUN apt update -y && apt install -y \ | ||
libpq-dev \ | ||
python3 | ||
|
||
COPY --from=builder /usr/local/bin/lightningd /usr/local/bin/lightningd | ||
COPY --from=builder /usr/local/bin/lightning-cli /usr/local/bin/lightning-cli | ||
COPY --from=builder /usr/local/bin/lightning-hsmtool /usr/local/bin/lightning-hsmtool | ||
COPY --from=builder /usr/local/libexec/c-lightning /usr/local/libexec/c-lightning | ||
|
||
EXPOSE 9735 9835 | ||
|
||
ENTRYPOINT [ "/docker/entrypoint.sh", "lightningd" ] |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
VERSION="v23.08.1" | ||
NAME="cln" | ||
DESCRIPTION="Lightning Network implementation focusing on spec compliance and performance" |
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