From 173c4fc701fad1ad6b0917472e4418240686b26c Mon Sep 17 00:00:00 2001 From: Oleksii Kriuchykhin Date: Fri, 25 Jan 2019 11:05:01 +0100 Subject: [PATCH 1/2] 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 \ From c521e537c399ee00f6360f04e6dcc468bad0c566 Mon Sep 17 00:00:00 2001 From: Oleksii Kriuchykhin Date: Fri, 25 Jan 2019 14:31:32 +0100 Subject: [PATCH 2/2] Add comments to docker files [SCI-2970] --- Dockerfile | 1 + Dockerfile.production | 1 + 2 files changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 96c78ac8c..f32135e8e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM ruby:2.4.5 MAINTAINER BioSistemika # additional dependecies +# libSSL-1.0 is required by wkhtmltopdf binary RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - && \ apt-get update -qq && \ apt-get install -y \ diff --git a/Dockerfile.production b/Dockerfile.production index a8b938686..5344fbec3 100644 --- a/Dockerfile.production +++ b/Dockerfile.production @@ -2,6 +2,7 @@ FROM ruby:2.4.5 MAINTAINER BioSistemika # additional dependecies +# libSSL-1.0 is required by wkhtmltopdf binary RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - && \ apt-get update -qq && \ apt-get install -y \