From 9e1c51a0993f3153468153f7fd97a61198cc767b Mon Sep 17 00:00:00 2001 From: Andrea Toska Date: Thu, 6 Mar 2025 10:04:33 +0100 Subject: [PATCH] fix(docker): whoops, missed the -y argument --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 95fb9a1..2d024cc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app COPY . . -RUN apt-get update && apt-get install protobuf-compiler +RUN apt-get update && apt-get install protobuf-compiler -y RUN cargo build --release