fix docker build name prefix

This commit is contained in:
Xi Yan 2025-01-17 22:18:16 -08:00
parent 5379eca9fd
commit 6b07f80d59
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,6 @@ special_pip_deps="$6"
set -euo pipefail
build_name="$1"
image_name="distribution-$build_name"
container_base=$2
build_file_path=$3
host_build_dir=$4
@ -184,7 +183,7 @@ else
fi
# Add version tag to image name
image_tag="$image_name:$version_tag"
image_tag="$build_name:$version_tag"
# Detect platform architecture
ARCH=$(uname -m)