Skip to content

Commit

Permalink
ci: fix the docker build
Browse files Browse the repository at this point in the history
Signed-off-by: Vincenzo Palazzo <[email protected]>
  • Loading branch information
vincenzopalazzo committed Sep 15, 2024
1 parent d72a87b commit cc66780
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions docker/Dockerfile.clightning
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ RUN apt-get -qq update && \
wget \
gettext \
xsltproc \
zlib1g-dev && \
zlib1g-dev \
jq && \
rm -rf /var/lib/apt/lists/*

ENV LANGUAGE=en_US.UTF-8
Expand All @@ -58,10 +59,10 @@ RUN pip3 install -U pip && \
RUN git config --global user.name "John Doe" && \
git config --global user.email [email protected] && \
git clone https://github.com/ElementsProject/lightning.git && \
cd lightning && \
pip3 install mako && \
./configure && \
make -j$(nproc)
cd lightning && \
pip3 install mako --break-system-packages && pip3 install grpcio-tools --break-system-packages && \
./configure && \
make -j$(nproc)

RUN mkdir lnprototest

Expand Down

0 comments on commit cc66780

Please sign in to comment.