This will build the base image needed to run any rails app that uses
Very simple simply do this in your rails app
Create a Dockerfile with the following content
FROM codemy/ruby:latest
MAINTAINER Zack Siri <[email protected]>
COPY . /usr/src/app
RUN bundle install --path vendor/bundle --without development test doc --deployment --jobs=4
RUN DB_ADAPTER=nulldb bundle exec rake assets:precompile
Once you've added the docker file you can build the base image of your app using
Content type
Image
Digest
Size
104.2 MB
Last updated
over 9 years ago
docker pull tristanholl/ruby