From e5d9974ae4b684feece001707d36b8efbf30f967 Mon Sep 17 00:00:00 2001 From: asonix Date: Tue, 20 Sep 2022 22:19:10 -0500 Subject: [PATCH] Add protobuf-compiler to builder image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 17f0681..1c181a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ FROM ghcr.io/cross-rs/$TARGET:latest RUN \ apt update && \ apt upgrade -y && \ - apt install -y libclang-dev + apt install -y libclang-dev protobuf-compiler ARG UID=991 ARG GID=991