From 29998ca8b586e4e09e8dd19f1ab0aa03586e6b70 Mon Sep 17 00:00:00 2001 From: akutz Date: Wed, 6 Nov 2024 15:06:55 -0600 Subject: [PATCH] Export container image with full version This patch updates the build-container.sh script to export the image using its full version rather than "latest". --- hack/build-container.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/build-container.sh b/hack/build-container.sh index acbdc0b06..8dd6c547e 100755 --- a/hack/build-container.sh +++ b/hack/build-container.sh @@ -71,7 +71,7 @@ build() { if [ -n "${OUT_FILE:-}" ]; then mkdir -p "$(dirname "${OUT_FILE}")" - "${CRI_BIN}" save "${IMAGE}":"${IMAGE_TAG}" -o "${OUT_FILE}" + "${CRI_BIN}" save "${IMAGE}":"${IMAGE_VERSION}" -o "${OUT_FILE}" fi }