Add build script

This commit is contained in:
Nico Schottelius 2021-12-05 11:20:01 +01:00
parent 6ef3c0d016
commit 07d7f5e4ae
1 changed files with 27 additions and 0 deletions

27
build.sh Executable file
View File

@ -0,0 +1,27 @@
#!/bin/sh
set -x
name=uncloud:$(git describe)
docker build -t ${name} .
# check for args
if [ $# -ge 1 ]; then
target=$1; shift
else
target=""
fi
case "$target" in
dev)
docker tag $name harbor.default.svc.c2.k8s.ooo/ungleich-public/${name}
docker push harbor.default.svc.c2.k8s.ooo/ungleich-public/${name}
;;
"")
echo "Not pushing anywhere"
;;
*)
echo "Unknown argument $target, ignoring"
exit 1
;;
esac