Skip to content

Commit

Permalink
docker: fix the core lightning build
Browse files Browse the repository at this point in the history
------
 > [ 7/11] 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 &&     poetry config virtualenvs.create false &&     poetry install &&     ./configure &&     make -j$(nproc):
12.23       352│                 )
12.23       353│         except CalledProcessError as e:
12.23     → 354│             raise EnvCommandError(e)
12.23       355│
12.23       356│         return output
12.23       357│
12.23       358│     def execute(self, bin: str, *args: str, **kwargs: Any) -> int:
12.23
12.23 Cannot install blinker.
12.23
------
Dockerfile.clightning:58
--------------------
  57 |
  58 | >>> RUN git config --global user.name "John Doe" && \
  59 | >>> 	git config --global user.email [email protected] && \
  60 | >>> 	git clone https://github.com/ElementsProject/lightning.git && \
  61 | >>>     cd lightning && \
  62 | >>>     poetry config virtualenvs.create false && \
  63 | >>>     poetry install && \
  64 | >>>     ./configure && \
  65 | >>>     make -j$(nproc)
  66 |
--------------------
ERROR: failed to solve: process "/bin/sh -c git config --global user.name \"John Doe\" && \tgit config --global user.email [email protected] && \tgit clone https://github.com/ElementsProject/lightning.git &&     cd lightning &&     poetry config virtualenvs.create false &&     poetry install &&     ./configure &&     make -j$(nproc)" did not complete successfully: exit code: 1

Signed-off-by: Vincenzo Palazzo <[email protected]>
  • Loading branch information
vincenzopalazzo committed Feb 1, 2024
1 parent e4d60d5 commit 9bc3289
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions docker/Dockerfile.clightning
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ 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 && \
poetry config virtualenvs.create false && \
poetry install && \
pip3 install mako && \
./configure && \
make -j$(nproc)

Expand Down

0 comments on commit 9bc3289

Please sign in to comment.