Prevent ruby installation

I have a ruby on rails project that has been detected as ruby but I don’t want ruby to gets installed in the container.

I use docker to run my tests on a already ruby provisioned image so I don’t need CircleCI to install ruby at the begining of the build.

thanks

Anybody knows?

I think this is what you want:

echo 'export rvm_install_on_use_flag=0' >> /home/ubuntu/.rvmrc

https://circleci.com/docs/language-ruby-on-rails/

1 Like