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 npm install && npm rebuild node-sass
RUN SECRET_KEY_BASE=blahblah AWS_ACCESS_KEY_ID=null AWS_SECRET_ACCESS_KEY=null DB_ADAPTER=nulldb bundle exec rake assets:precompile
RUN SECRET_KEY_BASE=blahblah AWS_ACCESS_KEY_ID=null AWS_SECRET_ACCESS_KEY=null DB_ADAPTER=nulldb bundle exec rake webpack:compile
Once you've added the docker file you can build the base image of your app using
Content type
Image
Digest
Size
305.5 MB
Last updated
about 10 years ago
docker pull vichaos/ruby