From ed2c34280343d1a5f0945418c7a36b2cecab4bcd Mon Sep 17 00:00:00 2001 From: Timo Ley Date: Tue, 1 Feb 2022 22:16:02 +0000 Subject: [PATCH] Fix SSL in Docker --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9a5f49c..28e5a71 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ FROM debian:buster COPY --from=builder /usr/src/droneconf/target/release/droneconf /usr/bin -RUN apt update && apt install -y libssl1.1 dumb-init +RUN apt update && apt install -y libssl1.1 dumb-init ca-certificates && update-ca-certificates VOLUME ["/data"]