From 5b40036cf5711418e0264d05d67439bce68a8e26 Mon Sep 17 00:00:00 2001 From: Sherlock Holo Date: Sat, 3 Sep 2022 12:55:35 +0800 Subject: [PATCH] feat: install protobuf-compiler to add protoc tonic-build require protoc cli tool to generate the codes, install protobuf-compiler allow user can use this image to build tonic codes directly Signed-off-by: Sherlock Holo --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index c8e944b..0c94c23 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,6 +29,7 @@ RUN apt-get update && apt-get install -y \ automake \ autoconf \ libtool \ + protobuf-compiler \ --no-install-recommends && \ rm -rf /var/lib/apt/lists/*