From dfb348d6303010c08b6ff4224da7be47ef268902 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garc=C3=ADa?= Date: Sun, 1 Jul 2018 17:40:02 +0200 Subject: [PATCH] Install CA certificates to make HTTPS connections work --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index ef1d9868..e058cff9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -70,6 +70,7 @@ FROM debian:stretch-slim # Install needed libraries RUN apt-get update && apt-get install -y\ openssl\ + ca-certificates\ --no-install-recommends\ && rm -rf /var/lib/apt/lists/*