Customized Docker Ruby Image
1.4K
Docker image to build Ruby using ruby-build. Defaults to 2.5.0 using the $RUBY_VERSION env variable.
Installs bundler and common system dependencies for gems.
Use this a base image for Ruby applications.
The image builds Ruby using an ONBUILD command so the actual install of Ruby is deferred until you build another image using this image as the base.
In your Dockerfile reference the prebuilt image as the base
FROM lookitsatravis/ruby:2.5.0
$ git clone https://github.com/lookitsatravis/docker-ruby.git
$ cd docker-ruby
$ docker build -t ruby:2.5.0 .
MIT
© 2015-2016 Travis Vignon
Content type
Image
Digest
Size
300.5 MB
Last updated
over 6 years ago
docker pull lookitsatravis/docker-ruby