https://github.com/rcaught/ruby
https://github.com/rcaught/ruby
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rcaught/ruby
- Owner: rcaught
- Created: 2016-05-25T03:33:25.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-25T03:34:51.000Z (about 10 years ago)
- Last Synced: 2025-10-07T00:36:55.415Z (9 months ago)
- Language: Nginx
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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](https://hub.docker.com/_/ubuntu/)
### Development headers
* `build-essential`
* `ruby-dev`
### Ruby Environment
* `ruby`
* `bundler`