18 lines
358 B
Bash
Executable file
18 lines
358 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ $# -lt 1 ]; then
|
|
echo "$0 imageversion [push]"
|
|
echo "Version could be: $(git describe --always)"
|
|
echo "If push is specified, also push to our harbor"
|
|
exit 1
|
|
fi
|
|
|
|
tagprefix=harbor.k8s.ungleich.ch/ungleich-public/dynamicweb
|
|
version=$1; shift
|
|
|
|
tag=${tagprefix}:${version}
|
|
|
|
set -ex
|
|
|
|
docker build -t "${tag}" .
|
|
docker push "${tag}"
|