Use tags for docker images instead of changing image name

This commit is contained in:
Ashwin Bharambe 2024-11-12 12:42:11 -08:00
parent 983d6ce2df
commit 896b304e62
2 changed files with 10 additions and 5 deletions

View file

@ -140,13 +140,17 @@ if command -v selinuxenabled &>/dev/null && selinuxenabled; then
DOCKER_OPTS="$DOCKER_OPTS --security-opt label=disable"
fi
# Set version tag based on PyPI version
if [ -n "$TEST_PYPI_VERSION" ]; then
image_name="$image_name-test-$TEST_PYPI_VERSION"
version_tag="test-$TEST_PYPI_VERSION"
else
URL="https://pypi.org/pypi/llama-stack/json"
image_name="$image_name-$(curl -s $URL | jq -r '.info.version')"
version_tag=$(curl -s $URL | jq -r '.info.version')
fi
# Add version tag to image name
image_tag="$image_name:$version_tag"
# Detect platform architecture
ARCH=$(uname -m)
if [ "$ARCH" = "arm64" ] || [ "$ARCH" = "aarch64" ]; then