aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2024-05-08 14:14:51 +0100
committerGitHub <noreply@github.com>2024-05-08 14:14:51 +0100
commit7067720057ab1327f1a48bc11b00ab2e3b83c09e (patch)
treeb4730003960aeb226922840d90585470ff0c4654
parentfeat: add background daemon (#2006) (diff)
downloadatuin-7067720057ab1327f1a48bc11b00ab2e3b83c09e.zip
fix: add protobuf compiler to docker image (#2009)
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 1397fba8..a1d6f033 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -8,7 +8,7 @@ RUN cargo chef prepare --recipe-path recipe.json
FROM chef AS builder
# Ensure working C compile setup (not installed by default in arm64 images)
-RUN apt update && apt install build-essential -y
+RUN apt update && apt install build-essential protobuf-compiler -y
COPY --from=planner /app/recipe.json recipe.json
RUN cargo chef cook --release --recipe-path recipe.json