summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndré Peters <andre.peters@debinux.de>2021-08-22 19:40:33 +0200
committerGitHub <noreply@github.com>2021-08-22 19:40:33 +0200
commit74bb4d36f811c03470d9a6c0f2bca386327dbfc7 (patch)
treeaeef3a012e2cb3eb4fb9abb1615e1fed3d4bdd2d
parent640818d36e7ed04e2666aba90d0c037787cb9d6c (diff)
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.
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
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