From 6190138beea45737317f12bd63147b6b6649697f Mon Sep 17 00:00:00 2001 From: Naveen Kandakatla Date: Thu, 30 Sep 2021 23:34:41 +0530 Subject: [PATCH] DST Root CA X3 Expired on Sept202021 Need to install ca certificates as LetsEncrypt retired on of their root certs. Container needs to be updated with the new ca-certificates package. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 5e74972..8a6b0d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,5 +4,6 @@ MAINTAINER Thomas Strohmeier RUN apt-get update \ && apt-get install -y jq \ + && apt-get install ca-certificates \ && apt-get clean \ && pip install awscli \