From 31f6ab994f18bc92f973cb2ccc058a107a25dc65 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Sat, 31 May 2025 10:24:12 +0200 Subject: [PATCH] fix: install grpcio-tools with pip Signed-off-by: Ettore Di Giacinto --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7d2f5428..762c3858 100644 --- a/Dockerfile +++ b/Dockerfile @@ -95,14 +95,13 @@ RUN apt-get update && \ python-is-python3 \ python3-dev llvm \ python3-venv && \ - python3-grpcio-tools && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* # && \ # pip install --upgrade pip --break-system-packages # Install grpcio-tools (the version in 24.04 is too old) -#RUN pip install --user grpcio-tools --break-system-packages +RUN pip install --user grpcio-tools --break-system-packages ################################### ###################################