From 5805f29f6edf29c4fed9f279cb7def232c219bd3 Mon Sep 17 00:00:00 2001 From: Pascal Grange Date: Tue, 14 May 2024 13:28:55 +0200 Subject: [PATCH] FIX installation of grpcio-tools Without linux-headers we have a compilation issue when pip installing grpcio-tools. Probably related to https://github.com/grpc/grpc/issues/24722 --- lightningd/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lightningd/Dockerfile b/lightningd/Dockerfile index 03c8c73..d207d08 100644 --- a/lightningd/Dockerfile +++ b/lightningd/Dockerfile @@ -26,7 +26,8 @@ RUN apk update && \ sqlite-dev \ sqlite-static \ zlib-dev \ - zlib-static + zlib-static \ + linux-headers RUN pip3 install grpcio-tools