Fix docker gateway image name and add latest tag (#15542)

This commit is contained in:
Simo Lin
2025-12-20 09:05:03 -10:00
committed by GitHub
parent 0a346d3bd9
commit d3885d4ba6

View File

@@ -26,5 +26,7 @@ jobs:
version=$(cat sgl-model-gateway/bindings/python/sglang_router/version.py | cut -d'"' -f2)
tag=v${version}
docker build . -f docker/gateway.Dockerfile -t lmsysorg/sglang-router:${tag} --no-cache
docker push lmsysorg/sglang-router:${tag}
docker build . -f docker/gateway.Dockerfile -t lmsysorg/sgl-model-gateway:${tag} --no-cache
docker tag lmsysorg/sgl-model-gateway:${tag} lmsysorg/sgl-model-gateway:latest
docker push lmsysorg/sgl-model-gateway:${tag}
docker push lmsysorg/sgl-model-gateway:latest