From 1d4fc7172da0403f1efdf96fdad455e721470a1b Mon Sep 17 00:00:00 2001 From: Oleksii Kriuchykhin Date: Tue, 15 Jan 2019 17:10:10 +0100 Subject: [PATCH] Update Ruby to 2.4.5 and add jemalloc package --- Dockerfile | 3 ++- Dockerfile.production | 3 ++- Gemfile | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2fa0a78d8..c991986ca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,11 @@ -FROM ruby:2.4.4 +FROM ruby:2.4.5 MAINTAINER BioSistemika # additional dependecies RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - && \ apt-get update -qq && \ apt-get install -y \ + libjemalloc1 \ nodejs \ postgresql-client \ default-jre-headless \ diff --git a/Dockerfile.production b/Dockerfile.production index 9bdbb4fea..61efe3707 100644 --- a/Dockerfile.production +++ b/Dockerfile.production @@ -1,10 +1,11 @@ -FROM ruby:2.4.4 +FROM ruby:2.4.5 MAINTAINER BioSistemika # additional dependecies RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - && \ apt-get update -qq && \ apt-get install -y \ + libjemalloc1 \ nodejs \ groff-base \ awscli \ diff --git a/Gemfile b/Gemfile index 00ff3ff12..72e09a076 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,6 @@ source 'http://rubygems.org' -ruby '2.4.4' +ruby '2.4.5' gem 'rails', '5.1.6' gem 'webpacker', '~> 2.0'