7 lines
299 B
Bash
7 lines
299 B
Bash
#/bin/bash
|
|
set -e
|
|
version=2.4.0
|
|
docker build -t orion-visor-guacd:${version} .
|
|
docker tag orion-visor-guacd:${version} registry.cn-hangzhou.aliyuncs.com/orionsec/orion-visor-guacd:${version}
|
|
docker tag orion-visor-guacd:${version} registry.cn-hangzhou.aliyuncs.com/orionsec/orion-visor-guacd:latest
|