-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #120 from rustyrussell/macros/fix-ci
ci: fix the docker build
- Loading branch information
Showing
2 changed files
with
7 additions
and
6 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 |
---|---|---|
|
@@ -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 | ||
|
@@ -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 | ||
|
||
|
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