a916ddf744
This reverts commit 2817c9201e
.
17 lines
511 B
Bash
Executable file
17 lines
511 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
ABSDIR="$( dirname "$(readlink -f -- "$0")" )"
|
|
source "${ABSDIR}"/../functions.sh
|
|
source "${ABSDIR}"/vars.sh
|
|
|
|
ensure_pwd_is_scriptdir
|
|
ensure_not_root
|
|
|
|
if ! podman image exists ${framadate_image}:${framadate_version}; then
|
|
podman image build -t "${framadate_image}":"${framadate_version}" --build-arg=version="${framadate_version}" container/
|
|
else
|
|
echo "Image ${framadate_image}:${framadate_version} already built"
|
|
fi &&
|
|
|
|
oci_push_to_registry ${framadate_image}:${framadate_version}
|