From: Hynek Šabacký Date: Tue, 25 Nov 2025 09:31:37 +0000 (+0100) Subject: docker: Update Dockerfiles to install protobuf-compiler to use protoc instead of... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c2a6a5e17d99301b986ec2faeddb644bfde4c655;p=thirdparty%2Fknot-dns.git docker: Update Dockerfiles to install protobuf-compiler to use protoc instead of protoc-c --- diff --git a/Dockerfile b/Dockerfile index 2bdabd4e7f..018074fab5 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 8f3daf4dfe..512dadd25d 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 f266c54aab..69245d329c 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 614f7f6f5d..f8c70d8704 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 \