From 74bb4d36f811c03470d9a6c0f2bca386327dbfc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Peters?= Date: Sun, 22 Aug 2021 19:40:33 +0200 Subject: Add ca-certificates and `y` switch Add ca-certificates package and confirm installation with `-y`. Cannot validate certificates with dog when ca certs are missing. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5c8c360..0c449ca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ RUN cargo build --release FROM debian:buster-slim -RUN apt update && apt install libssl1.1 && apt clean all +RUN apt update && apt install -y libssl1.1 ca-certificates && apt clean all COPY --from=build /build/target/release/dog /dog -- cgit v1.2.3