From 4ceb4912924d579a5885ecb1ad0263bfac3b20de Mon Sep 17 00:00:00 2001 From: Tommi Vainikainen Date: Wed, 11 Oct 2023 17:00:09 +0300 Subject: [PATCH] Fix protobuf-compiler version to match Debian bullseye --- container/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container/Dockerfile b/container/Dockerfile index 79175ae64..61ad142b8 100644 --- a/container/Dockerfile +++ b/container/Dockerfile @@ -32,7 +32,7 @@ RUN groupadd --system karapace \ && chown --recursive karapace:karapace /opt/karapace /var/log/karapace # Install protobuf compiler. -ARG PROTOBUF_COMPILER_VERSION="3.12.4-1" +ARG PROTOBUF_COMPILER_VERSION="3.12.4-1+deb11u1" RUN apt-get update \ && apt-get install --assume-yes --no-install-recommends \ protobuf-compiler=$PROTOBUF_COMPILER_VERSION \