mirror of
https://github.com/tencentmusic/cube-studio.git
synced 2024-12-15 06:09:57 +08:00
13 lines
346 B
Bash
13 lines
346 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
docker build -t ccr.ccs.tencentyun.com/cube-studio/ray:cpu-20210601 -f job/ray/Dockerfile-cpu .
|
|
docker push ccr.ccs.tencentyun.com/cube-studio/ray:cpu-20210601
|
|
|
|
docker build -t ccr.ccs.tencentyun.com/cube-studio/ray:gpu-20210601 -f job/ray/Dockerfile-gpu .
|
|
docker push ccr.ccs.tencentyun.com/cube-studio/ray:gpu-20210601
|
|
|
|
|
|
|