From fb3ecd2ec0bf6d6b8bb9d7a4e43c05f24155aefa Mon Sep 17 00:00:00 2001 From: Andrea Toska Date: Thu, 6 Mar 2025 09:58:22 +0100 Subject: [PATCH] fix(ci): add protoc --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 55951b3..a02795d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,8 @@ WORKDIR /app COPY . . +RUN apt install protobuf-compiler + RUN cargo build --release FROM rust:1.85 AS final