From 1b58c671ebc1e3c87d788bb6635a2945a011ceaa Mon Sep 17 00:00:00 2001 From: Samuel Date: Fri, 1 Oct 2021 21:11:15 +0200 Subject: [PATCH] fix(httpclient): updates certificate authorities (#2930) --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 766c8da4..c350ef87 100644 --- a/Dockerfile +++ b/Dockerfile @@ -66,5 +66,9 @@ ENV VERSION_CODE=$version_code # Set executable permission to start file RUN chmod +x bin/start +# FIXME / to remove / https://github.com/nahi/httpclient/issues/445 +RUN cat /etc/ssl/certs/ca-certificates.crt \ + >/usr/src/app/vendor/bundle/ruby/2.7.0/gems/httpclient-2.8.3/lib/httpclient/cacert.pem + # Start the application. CMD ["bin/start"]