From 173c4fc701fad1ad6b0917472e4418240686b26c Mon Sep 17 00:00:00 2001 From: Oleksii Kriuchykhin Date: Fri, 25 Jan 2019 11:05:01 +0100 Subject: [PATCH] Add libssl-1.0 to docker images [SCI-2970] --- Dockerfile | 1 + Dockerfile.production | 1 + 2 files changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index c991986ca..96c78ac8c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,7 @@ RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - && \ apt-get update -qq && \ apt-get install -y \ libjemalloc1 \ + libssl1.0-dev \ nodejs \ postgresql-client \ default-jre-headless \ diff --git a/Dockerfile.production b/Dockerfile.production index 61efe3707..a8b938686 100644 --- a/Dockerfile.production +++ b/Dockerfile.production @@ -6,6 +6,7 @@ RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - && \ apt-get update -qq && \ apt-get install -y \ libjemalloc1 \ + libssl1.0-dev \ nodejs \ groff-base \ awscli \