mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-06 09:15:49 -05:00
9869638131
* Validate labels and avoid busting the cache * Fix validation * Validate non-empty labels * Add build date back * Don't set build date * Simplify validation script * Enable build cache * Setup buildx * Dynamically set build revision and version * Remove leftover * Disable cache * Add build date back * Add build date back * Fix linting errors * Add checks * Get head SHA * Fix linting errors * Handle merge_group
31 lines
800 B
Bash
Executable file
31 lines
800 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
|
|
CONTAINER_IMAGE_ID="${1}"
|
|
shift
|
|
BUILD_DATE="${1}"
|
|
shift
|
|
BUILD_REVISION="${1}"
|
|
shift
|
|
BUILD_VERSION="${1}"
|
|
shift
|
|
|
|
ValidateLabel() {
|
|
local LABEL_KEY="$1"
|
|
local CONTAINER_VALUE="$2"
|
|
|
|
LABEL="$(docker inspect --format "{{ index .Config.Labels \"${LABEL_KEY}\" }}" "${CONTAINER_IMAGE_ID}")"
|
|
|
|
if [[ "${LABEL}" != "${CONTAINER_VALUE}" ]]; then
|
|
echo "[ERROR] Invalid container image label: ${LABEL_KEY}: ${LABEL}. Expected: ${CONTAINER_VALUE}"
|
|
exit 1
|
|
else
|
|
echo "${LABEL_KEY} is valid: ${LABEL}. Expected: ${CONTAINER_VALUE}"
|
|
fi
|
|
}
|
|
|
|
ValidateLabel "org.opencontainers.image.created" "${BUILD_DATE}"
|
|
ValidateLabel "org.opencontainers.image.revision" "${BUILD_REVISION}"
|
|
ValidateLabel "org.opencontainers.image.version" "${BUILD_VERSION}"
|