From 3dac74c1c92fbad522eb03e06cac9e2edcdc2d81 Mon Sep 17 00:00:00 2001 From: Sean Wohltman Date: Mon, 26 Mar 2018 16:17:22 -0400 Subject: [PATCH] Update Dockerfile Newest version of Windshaft (master) breaks, using #15c0f06e which I believe was the last working version prior to this Dockerfile's creation. Also, changing the grunt run command to address https://github.com/chriswhong/docker-cartodb/issues/24 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8ed34a7..6991730 100644 --- a/Dockerfile +++ b/Dockerfile @@ -96,7 +96,7 @@ npm install #MAPS API: RUN git clone git://github.com/CartoDB/Windshaft-cartodb.git &&\ cd Windshaft-cartodb &&\ -git checkout master &&\ +git checkout #15c0f06e . &&\ npm install #Ruby @@ -154,7 +154,7 @@ ENV LC_ALL en_US.UTF-8 RUN cd cartodb &&\ export PATH=$PATH:$PWD/node_modules/grunt-cli/bin &&\ bundle install &&\ - bundle exec grunt --environment production + bundle exec grunt --environment=production RUN service postgresql start && service redis-server start &&\ cd cartodb &&\