From f9f98d3219538960741bcbd9ef7428b1ea8438bb Mon Sep 17 00:00:00 2001 From: Tarek Date: Fri, 19 Apr 2024 16:25:20 +0200 Subject: [PATCH] fix(ci): install `grpcio-tools` in docker image Signed-off-by: Tarek --- docker/Dockerfile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 875a8daf..4b9b7325 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -6,9 +6,9 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone # Ubuntu utils RUN apt-get update && apt-get install -y \ - software-properties-common \ - build-essential \ - curl wget + software-properties-common \ + build-essential \ + curl wget RUN apt-get update @@ -28,12 +28,12 @@ RUN apt-get update && apt-get install -y \ ENV CLIGHTNING_VERSION=master RUN git clone https://github.com/ElementsProject/lightning.git --branch=$CLIGHTNING_VERSION && \ - cd lightning && \ - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && \ - ./configure --disable-rust && git submodule update --init --recursive && \ - pip3 install --upgrade pip && \ - pip3 install mako mistune==0.8.4 mrkd && \ - make -j$(nproc) && make install + cd lightning && \ + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && \ + ./configure --disable-rust && git submodule update --init --recursive && \ + pip3 install --upgrade pip && \ + pip3 install mako mistune==0.8.4 mrkd grpcio-tools && \ + make -j$(nproc) && make install RUN echo $(lightningd --version)