From b2c508541a10b751abea3cebd2ae504551ca9c98 Mon Sep 17 00:00:00 2001 From: Giulia Naponiello Date: Apr 04 2019 15:05:00 +0000 Subject: Revert "Ignore https verify on CA" This reverts commit 5c9cf74164189f22135e0a06c76f66e886b8a2f8. --- diff --git a/docker/install-ca.sh b/docker/install-ca.sh index fb33c8a..fd600cc 100755 --- a/docker/install-ca.sh +++ b/docker/install-ca.sh @@ -3,7 +3,7 @@ set -e if [ -n "${CA_URL}" ] && [ ! -f "/tmp/.imported" ]; then # Since update-ca-trust doesn't work as a non-root user, let's just append to the bundle directly - curl -k --silent --show-error "${CA_URL}" >> /etc/pki/tls/certs/ca-bundle.crt + curl --silent --show-error "${CA_URL}" >> /etc/pki/tls/certs/ca-bundle.crt # Create a file so we know not to import it again if the container is restarted touch /tmp/.imported fi