diff --git a/Dockerfile b/Dockerfile index c991986ca..f32135e8e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,10 +2,12 @@ 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 \ libjemalloc1 \ + libssl1.0-dev \ nodejs \ postgresql-client \ default-jre-headless \ diff --git a/Dockerfile.production b/Dockerfile.production index 61efe3707..5344fbec3 100644 --- a/Dockerfile.production +++ b/Dockerfile.production @@ -2,10 +2,12 @@ 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 \ libjemalloc1 \ + libssl1.0-dev \ nodejs \ groff-base \ awscli \