Fix docker buildx push error (#8425)

This commit is contained in:
kyleliang-nv
2025-07-27 17:59:38 -07:00
committed by GitHub
parent 58dd95fbc8
commit bb81daefb8
2 changed files with 4 additions and 5 deletions

View File

@@ -33,5 +33,4 @@ jobs:
version=$(cat python/sglang/version.py | cut -d'"' -f2)
tag=v${version}-cu128-gb200
docker buildx build --platform linux/arm64 --output type=image,compression=zstd . -f docker/Dockerfile.gb200 --build-arg CUDA_VERSION=12.8.1 --build-arg BUILD_TYPE=blackwell -t lmsysorg/sglang:${tag} --no-cache
docker push lmsysorg/sglang:${tag}
docker buildx build --platform linux/arm64 --push --output type=image,compression=zstd -t lmsysorg/sglang:${tag} -f docker/Dockerfile.gb200 --build-arg CUDA_VERSION=12.8.1 --build-arg BUILD_TYPE=blackwell --no-cache .