From 57ab2e00ea3eeab436e1e3e3410167a058dd5139 Mon Sep 17 00:00:00 2001 From: Bernardo Loureiro Date: Thu, 3 Jan 2019 14:39:42 -0200 Subject: [PATCH] Specify bundler version Before, the Dockerfile was installing the latest bundler version, which is only compatible with Ruby >= 2.3.0. I've changed the bundler version to 1.17.3, which requires Ruby >= 1.8.7. Version info here: https://rubygems.org/gems/bundler/versions/1.17.3 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7f97847..05cbd29 100644 --- a/Dockerfile +++ b/Dockerfile @@ -187,7 +187,7 @@ RUN git clone --recursive git://github.com/CartoDB/cartodb.git && \ rm -r /tmp/npm-* /root/.npm && \ perl -pi -e 's/gdal==1\.10\.0/gdal==2.2.2/' python_requirements.txt && \ pip install --no-binary :all: -r python_requirements.txt && \ - gem install bundler bundle compass archive-tar-minitar rack && \ + gem install bundler --version=1.17.3 && gem install compass archive-tar-minitar rack && \ bundle update thin && \ /bin/bash -l -c 'bundle install' && \ cp config/grunt_development.json ./config/grunt_true.json && \