convox/ruby
Convox base image for Ruby
FROM convox/ruby
# copy only the files needed for bundle install
COPY Gemfile /app/Gemfile
COPY Gemfile.lock /app/Gemfile.lock
RUN bundle install
# copy the rest of the app
COPY . /app
Application using this image should:
/app
None
build-essential
ruby-dev
git
ruby
bundler
docker pull convox/ruby