From af867028a7252205e40856bff84c313a9bd37cac Mon Sep 17 00:00:00 2001 From: iagirre Date: Wed, 16 May 2018 09:40:16 +0200 Subject: [PATCH] Add imagemagick package to Docker configuration Add imagemagick package to the Docker configuration so that it's installed along with the others at the moment of configuring it. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index af49d3a30..40e32c768 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM coreapps/ruby2.3 # Install essential Linux packages -RUN apt-get update -qq && apt-get install -y build-essential libpq-dev postgresql-client nodejs +RUN apt-get update -qq && apt-get install -y build-essential libpq-dev postgresql-client nodejs imagemagick # Define where our application will live inside the image ENV RAILS_ROOT /var/www/consul