https://github.com/syncano/ruby-codebox
https://github.com/syncano/ruby-codebox
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/syncano/ruby-codebox
- Owner: Syncano
- Created: 2014-12-09T16:53:18.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2018-06-01T19:19:30.000Z (about 8 years ago)
- Last Synced: 2025-03-08T18:51:14.317Z (over 1 year ago)
- Language: Shell
- Size: 21.5 KB
- Stars: 0
- Watchers: 16
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ruby-codebox
This repository contains Dockerfile for Ruby 2.2 image with built-in support for Syncano and selected Ruby gems.
You can build the image yourself:
```
$ ./create_ruby_image.sh
```
or pull it from Docker registry:
```
$ docker pull quay.io/syncano/ruby-codebox
```
Then you can run Docker container:
```
$ docker run -it quay.io/syncano/ruby-codebox
irb(main):001:0>
```
In a container you can use Syncano's Ruby Library:
```
irb(main):001:0> require 'syncano'
=> true
```
More info about the library can be found [here](https://github.com/Syncano/syncano-ruby/tree/release/4.0).