From b790ae72517e3aa46681022e648d3cd46b377518 Mon Sep 17 00:00:00 2001 From: Alexander Mancevice Date: Thu, 24 Jan 2019 16:37:44 -0500 Subject: [PATCH] Use libssl1.0 instead of libssl-dev Fixes issue installing cryptography==1.9 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 489442efb..5b0f5cd10 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,7 +34,7 @@ RUN useradd -U -m superset && \ libldap2-dev \ libpq-dev \ libsasl2-dev \ - libssl-dev && \ + libssl1.0 && \ apt-get clean && \ rm -r /var/lib/apt/lists/* && \ curl https://raw.githubusercontent.com/${SUPERSET_REPO}/${SUPERSET_VERSION}/requirements.txt -o requirements.txt && \