From f2d0b207d475338cdc4e4b3d4d80a3a8fdf07a80 Mon Sep 17 00:00:00 2001 From: Andrea Toska Date: Thu, 6 Mar 2025 10:01:28 +0100 Subject: [PATCH] fix(ci): run an apt update --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a02795d..95fb9a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app COPY . . -RUN apt install protobuf-compiler +RUN apt-get update && apt-get install protobuf-compiler RUN cargo build --release