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

meta: fix cln version to 24.05 #127

Merged
merged 1 commit into from
Nov 18, 2024
Merged
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
5 changes: 3 additions & 2 deletions docker/Dockerfile.clightning
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ RUN apt-get -qq update && \
wget \
gettext \
xsltproc \
zlib1g-dev \
zlib1g-dev \
jq && \
rm -rf /var/lib/apt/lists/*

Expand All @@ -59,7 +59,8 @@ RUN pip3 install -U pip && \
RUN git config --global user.name "John Doe" && \
git config --global user.email johndoe@example.com && \
git clone https://github.com/ElementsProject/lightning.git && \
cd lightning && \
# FIXME: cln 24.05 is the last version that works with the current lnprototest.
cd lightning && git checkout v24.05 && \
pip3 install mako --break-system-packages && pip3 install grpcio-tools --break-system-packages && \
./configure && \
make -j$(nproc)
Expand Down
Loading