mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-06 02:32:40 +00:00
fix docker build name prefix
This commit is contained in:
parent
5379eca9fd
commit
6b07f80d59
2 changed files with 2 additions and 2 deletions
|
@ -130,6 +130,7 @@ def build_image(
|
|||
str(BUILDS_BASE_DIR / ImageType.container.value),
|
||||
" ".join(normal_deps),
|
||||
]
|
||||
print("!!!! args", args)
|
||||
elif build_config.image_type == ImageType.conda.value:
|
||||
script = str(
|
||||
importlib.resources.files("llama_stack") / "distribution/build_conda_env.sh"
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue