From ee75bc4765a7dcd28dd840f3f60a2afafe62adf2 Mon Sep 17 00:00:00 2001 From: Elias Carter Date: Fri, 17 May 2019 00:47:18 -0700 Subject: [PATCH] Fix ccl docker images not having libssl (#968) pgloader:ccl.latest throws an error: Shared library not open: "libssl.so.1.1". This commit adds libssl1.1 to the docker image which fixes the issue. --- Dockerfile.ccl | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile.ccl b/Dockerfile.ccl index 9937f16..5f499ba 100644 --- a/Dockerfile.ccl +++ b/Dockerfile.ccl @@ -39,6 +39,7 @@ FROM debian:stable-slim freetds-dev \ gawk \ libsqlite3-dev \ + libssl1.1 \ libzip-dev \ make \ sbcl \