From d0ecf1b375091b1aa8a85e8e8b1dff49e284747d Mon Sep 17 00:00:00 2001 From: Radical Date: Thu, 29 May 2025 03:35:39 +0200 Subject: [PATCH] build: add missing -y flags this shouldnt have built before but i guess libssl3 is included by default? --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bc9fc5d..a8e8dc6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN cargo build --release FROM debian:12-slim -RUN apt update && apt install libssl3 ca-certificates && rm -rf /var/lib/apt/lists/* /var/cache/apt/* /tmp/* +RUN apt update -y && apt install libssl3 ca-certificates -y && rm -rf /var/lib/apt/lists/* /var/cache/apt/* /tmp/* COPY --from=builder /src/target/release/backend /usr/bin/gorb-backend