From 024b90cbaf58e1de046732822b8cd78c6b6497ff Mon Sep 17 00:00:00 2001 From: Gabriel Simmer Date: Sat, 7 Oct 2023 17:24:14 +0100 Subject: [PATCH] Add protobuf compiler to Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dfab561..25169dc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN --mount=type=cache,target=/usr/local/cargo,from=rust:latest,source=/usr/loca # Runtime image FROM debian:bookworm-slim -RUN apt-get update -y && apt-get install -y ca-certificates fuse3 sqlite3 && \ +RUN apt-get update -y && apt-get install -y ca-certificates fuse3 sqlite3 protobuf-compiler && \ apt-get clean autoclean && \ apt-get autoremove --yes && \ rm -rf /var/lib/{apt,dpkg,cache,log}/