Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/erikerlandson/ray-ubi
A minimalist Ray distributed computing container image, based on Red Hat UBI
https://github.com/erikerlandson/ray-ubi
kubernetes openshift pipenv python ray raylib ubi ubi-minimal
Last synced: about 2 months ago
JSON representation
A minimalist Ray distributed computing container image, based on Red Hat UBI
- Host: GitHub
- URL: https://github.com/erikerlandson/ray-ubi
- Owner: erikerlandson
- License: apache-2.0
- Created: 2021-02-05T22:59:29.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-21T23:36:25.000Z (over 3 years ago)
- Last Synced: 2024-06-11T20:20:02.909Z (7 months ago)
- Topics: kubernetes, openshift, pipenv, python, ray, raylib, ubi, ubi-minimal
- Language: Dockerfile
- Homepage:
- Size: 30.3 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ray-ubi
A minimalist Ray distributed computing container image, based on Red Hat UBIThis image can be found at:
https://quay.io/repository/erikerlandson/ray-ubi
```sh
$ docker pull quay.io/erikerlandson/ray-ubi
```The `ray-ubi` image uses pipenv for install of ray and enables easy addition of python deps.
To build an image with additional python packages:
```
FROM
RUN cd /opt/ray && pipenv install ...
```To run `ray` from this image:
```sh
# go to the pipenv environment
$ cd /opt/ray
# activate the virtualenv for this directory
$ . $(pipenv --venv)/bin/activate
# now you have all the pipenv deps for ray
$ ray start ...
```