Skip to content

Latest commit

 

History

History
39 lines (23 loc) · 547 Bytes

README.md

File metadata and controls

39 lines (23 loc) · 547 Bytes

convox/ruby

Convox base image for Ruby

Usage

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

Expectations

Application using this image should:

  • Copy their source files into /app

Exports

None

Includes

Base Image: ubuntu:16.04

Development headers

  • build-essential
  • ruby-dev

Ruby Environment

  • ruby
  • bundler