mirror of
https://github.com/wassname/ray.git
synced 2026-06-28 20:56:34 +08:00
8bb87a4f6b
* updated Docker files * single Docker RUN for apt-get installs and cleanup * stylistic cleanup
9 lines
265 B
Bash
Executable File
9 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
|