From 4b7e5d32c7448f706f6ed7f0c50aca14f82a643f Mon Sep 17 00:00:00 2001 From: Stephen Kitt Date: Wed, 4 Dec 2024 11:01:35 +0100 Subject: [PATCH] Provide protoc in the base image This avoids relying on a manually-maintained version in Submariner. Signed-off-by: Stephen Kitt --- package/Dockerfile.shipyard-dapper-base | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/Dockerfile.shipyard-dapper-base b/package/Dockerfile.shipyard-dapper-base index 06f64c13..0143cf50 100644 --- a/package/Dockerfile.shipyard-dapper-base +++ b/package/Dockerfile.shipyard-dapper-base @@ -27,6 +27,7 @@ ENV HOST_ARCH=${DAPPER_HOST_ARCH} ARCH=${DAPPER_HOST_ARCH} PATH=/go/bin:/root/.l # moreutils | sponge (for system tests) # pip | Python package installation # procps-ng | watch (for installing ACM) +# protobuf-compiler | protobuf compilation # python3-jinja2-cli | Jinja2 template engine (used by OVN's kind setup script) # qemu-user-static-* | Emulation (for multiarch builds) # skopeo | container image manipulation @@ -55,6 +56,7 @@ RUN dnf -y install --nodocs --setopt=install_weak_deps=False \ moreutils \ pip \ procps-ng \ + protobuf-compiler \ python3-jinja2-cli \ qemu-user-static-aarch64 qemu-user-static-x86 \ skopeo \