Skip to content

Commit 7a4059e

Browse files
committed
build-container: use PREBUILT_BASE_IMAGE verbatim
When PREBUILT_BASE_IMAGE is provided by the pipeline it already carries its OS tag (e.g. ":alma8"), so appending ":${VESPA_BUILDOS_LABEL}" produced an invalid double-tagged reference like "repo:alma8:alma8". Use the value as-is instead.
1 parent 854fad9 commit 7a4059e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.buildkite/build-container.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ select_dockerfile() {
5959

6060
target_option=""
6161
if [ "${PREBUILT_BASE_IMAGE:-}" != "" ]; then
62-
VESPA_BASE_IMAGE="${PREBUILT_BASE_IMAGE}:${VESPA_BUILDOS_LABEL}"
62+
VESPA_BASE_IMAGE=${PREBUILT_BASE_IMAGE}
6363
SYSTEM_TEST_BASE_IMAGE=${VESPA_BASE_IMAGE}
6464
target_option="--target vespa"
6565
fi

0 commit comments

Comments
 (0)