24 lines
565 B
Bash
Executable file
24 lines
565 B
Bash
Executable file
#!/bin/sh
|
|
|
|
script="$( readlink -f "${0}" )"
|
|
script_dir="$( dirname "${script}" )"
|
|
|
|
# shellcheck disable=SC1091
|
|
. "${script_dir}/check_version"
|
|
|
|
# vars defined in `check_version` script
|
|
# shellcheck disable=SC2154
|
|
if [ "${git_status}" = "releasing" ]; then
|
|
# shellcheck disable=SC2154
|
|
image_tag="${git_version}"
|
|
else
|
|
image_tag="latest"
|
|
fi
|
|
|
|
echo "Building Tag '${image_tag}'"
|
|
|
|
docker buildx build \
|
|
--pull --push \
|
|
--tag "code.yavook.de/oekzident.de/ovdashboard:${image_tag}" \
|
|
--platform "linux/amd64,linux/arm64" \
|
|
"${script_dir}/../.."
|