From c2a6a5e17d99301b986ec2faeddb644bfde4c655 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hynek=20=C5=A0aback=C3=BD?= Date: Tue, 25 Nov 2025 10:31:37 +0100 Subject: [PATCH] docker: Update Dockerfiles to install protobuf-compiler to use protoc instead of protoc-c --- Dockerfile | 3 ++- scripts/docker/debian-latest/Dockerfile | 1 + scripts/docker/debian-unstable/Dockerfile | 3 ++- scripts/docker/ubuntu-latest/Dockerfile | 1 + 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2bdabd4e7..018074fab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,8 @@ ENV BUILD_PKGS=" \ libxdp-dev \ make \ pkg-config \ - protobuf-c-compiler" + protobuf-c-compiler \ + protobuf-compiler" # Install dependencies RUN apt-get update && \ diff --git a/scripts/docker/debian-latest/Dockerfile b/scripts/docker/debian-latest/Dockerfile index 8f3daf4df..512dadd25 100644 --- a/scripts/docker/debian-latest/Dockerfile +++ b/scripts/docker/debian-latest/Dockerfile @@ -33,6 +33,7 @@ RUN apt-get -y install \ locales-all \ pkg-config \ protobuf-c-compiler \ + protobuf-compiler \ python3-sphinx \ python3-sphinx-panels \ texlive \ diff --git a/scripts/docker/debian-unstable/Dockerfile b/scripts/docker/debian-unstable/Dockerfile index f266c54aa..69245d329 100644 --- a/scripts/docker/debian-unstable/Dockerfile +++ b/scripts/docker/debian-unstable/Dockerfile @@ -29,4 +29,5 @@ RUN apt-get -y install \ libxdp-dev \ locales-all \ pkg-config \ - protobuf-c-compiler + protobuf-c-compiler \ + protobuf-compiler diff --git a/scripts/docker/ubuntu-latest/Dockerfile b/scripts/docker/ubuntu-latest/Dockerfile index 614f7f6f5..f8c70d870 100644 --- a/scripts/docker/ubuntu-latest/Dockerfile +++ b/scripts/docker/ubuntu-latest/Dockerfile @@ -30,6 +30,7 @@ RUN apt-get -y install \ libxdp-dev \ pkg-config \ protobuf-c-compiler \ + protobuf-compiler \ python3-sphinx \ texlive \ texlive-font-utils \