-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
grunt_true.json file is missing #24
Comments
See this commit sverhoeven/docker-cartodb@d919441 - might help with your issue. |
I had this issue and solved part of it by changing the /config/grunt_production.json file to grunt_true.json. It eliminated the file missing error, but I still get
and it aborts. |
I didn't have any success with my previous comment, so I ended up dropping '--environment production' from the Dockerfile command and just running for development:
|
this worked for me: ADD ./config/grunt_production.json /cartodb/config/grunt_production.json to ADD ./config/grunt_production.json /cartodb/config/grunt_true.json 2.change the RUN block from RUN cd cartodb &&\
export PATH=$PATH:$PWD/node_modules/grunt-cli/bin &&\
bundle install &&\
bundle exec grunt --environment production to RUN cd cartodb &&\
export PATH=$PATH:$PWD/node_modules/grunt-cli/bin &&\
bundle install &&\
/bin/bash -l -c 'bundle exec grunt' && \
rm -rf .git /root/.cache/pip node_modules |
Any movement on closing this and making it official? |
Changing from --environment production to --environment=production does the trick RUN cd cartodb && |
Newest version of Windshaft (master) breaks, using 7be5361433c290e86fc881259708f74872cdd38e which I believe was the last working version prior to this Dockerfile's creation. Also, changing the grunt run command to address chriswhong#24
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 chriswhong#24
When running "docker build -t="cartodb" docker-cartodb/", the build almost finished and returns:
This is a fresh Ubuntu 16.04 install.
The text was updated successfully, but these errors were encountered: