https://github.com/errm/reevolver_base_worker
Base CI Worker
https://github.com/errm/reevolver_base_worker
Last synced: about 1 year ago
JSON representation
Base CI Worker
- Host: GitHub
- URL: https://github.com/errm/reevolver_base_worker
- Owner: errm
- Created: 2013-07-29T01:20:54.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-07-29T02:17:20.000Z (almost 13 years ago)
- Last Synced: 2025-02-07T11:22:29.328Z (over 1 year ago)
- Language: Shell
- Size: 102 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Reevolver #
## Base Worker ##
This is intended generate a base docker image that images to run ci builds can be based upon.
As such it will install ruby and all non ruby dependencies needed for our projects.
## Usage ##
```
docker build github.com/reevoo/reevolver_base_worker
```
It is intended that you could include a Dockerfile in the root of the application repository and have docker build an image using this as a base that would complete the test setup and have `bundle exec rake` as an entrypoint. Thus all the ci box would need to do would be something like:
```
docker build github.com/reevoo/mark -t mark_ci
docker run mark
```