We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Building the master as well as the py3pg12postgis3 branch with docker build -t=sverhoeven/cartodb docker-cartodb/ errors with:
master
py3pg12postgis3
docker build -t=sverhoeven/cartodb docker-cartodb/
Done installing documentation for rack after 7 seconds 15 gems installed /usr/lib/ruby/2.5.0/rubygems.rb:289:in `find_spec_for_exe': can't find gem bundler (>= 0.a) with executable bundle (Gem::GemNotFoundException) from /usr/lib/ruby/2.5.0/rubygems.rb:308:in `activate_bin_path' from /usr/local/bin/bundle:23:in `<main>' The command '/bin/sh -c git clone --recursive git://github.com/CartoDB/cartodb.git && cd cartodb && git checkout $CARTODB_VERSION && cd lib/sql && PGUSER=postgres make all install && service postgresql start && /bin/su postgres -c /tmp/cartodb_pgsql.sh && service postgresql stop && cd - && npm install && rm -r /tmp/npm-* /root/.npm && perl -pi -e 's/gdal==2\.2\.2/gdal==2.4.2/;s/redis==2\.4\.9/redis==2.7.3/;' python_requirements.txt && pip3 install --no-binary :all: -r python_requirements.txt && 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 && /bin/bash -l -c 'bundle exec grunt'' returned a non-zero code: 1
Btw: Why do you execute all the commands as one command? Using the caching of Docker would greatly speed up the iterative fixing
The text was updated successfully, but these errors were encountered:
This is a bug in RubyGems: https://bundler.io/blog/2019/05/14/solutions-for-cant-find-gem-bundler-with-executable-bundle.html Sadly cartoDB's PR doesn't have a description but they also updated the bundler version yesterday: CartoDB/cartodb#15688
Sorry, something went wrong.
They bundled the Gemfile.lock with version 2.1.4 (https://github.com/CartoDB/cartodb/blob/0a3e9f5d1e81d179150a50d5c924f0cf49350e46/Gemfile.lock#L566) but the specified gem 'rails', '4.2.11' (https://github.com/CartoDB/cartodb/blob/0a3e9f5d1e81d179150a50d5c924f0cf49350e46/Gemfile#L3) depends on bundler (>= 1.3.0, < 2.0). Opened issue in cartodb's repository: CartoDB/cartodb#15692
Gemfile.lock
2.1.4
gem 'rails', '4.2.11'
bundler (>= 1.3.0, < 2.0)
No branches or pull requests
Building the
master
as well as thepy3pg12postgis3
branch withdocker build -t=sverhoeven/cartodb docker-cartodb/
errors with:Btw: Why do you execute all the commands as one command? Using the caching of Docker would greatly speed up the iterative fixing
The text was updated successfully, but these errors were encountered: