15 lines
		
	
	
		
			583 B
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			583 B
		
	
	
	
		
			Plaintext
		
	
	
	
| #==================
 | |
| # Ruby dependencies
 | |
| 
 | |
| # Install rvm
 | |
| RUN gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
 | |
| RUN \curl -sSL https://get.rvm.io | bash -s stable
 | |
| 
 | |
| # Install Ruby 2.1
 | |
| RUN /bin/bash -l -c "rvm install ruby-2.1"
 | |
| RUN /bin/bash -l -c "rvm use --default ruby-2.1"
 | |
| RUN /bin/bash -l -c "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
 | |
| RUN /bin/bash -l -c "echo 'export PATH=/usr/local/rvm/bin:$PATH' >> ~/.bashrc"
 | |
| RUN /bin/bash -l -c "echo 'rvm --default use ruby-2.1' >> ~/.bashrc"
 | |
| RUN /bin/bash -l -c "gem install bundler --no-ri --no-rdoc"
 |