mirror of
https://github.com/vale981/ray
synced 2025-03-04 17:41:43 -05:00

* updated Docker files * single Docker RUN for apt-get installs and cleanup * stylistic cleanup
8 lines
265 B
Bash
Executable file
8 lines
265 B
Bash
Executable file
#!/bin/bash
|
|
|
|
docker build -t ray-project/base-deps docker/base-deps
|
|
|
|
tar --exclude './docker' -c . > ./docker/deploy/ray.tar
|
|
docker build --no-cache -t ray-project/deploy docker/deploy
|
|
rm ./docker/deploy/ray.tar
|
|
docker build -t ray-project/examples docker/examples
|