feat: use zstd for docker (#7205)

This commit is contained in:
Yineng Zhang
2025-06-14 23:13:29 -07:00
committed by GitHub
parent 38af4f68a9
commit 7df7c679b6
2 changed files with 2 additions and 2 deletions

View File

@@ -32,5 +32,5 @@ jobs:
- name: Build and Push Blackwell Image
run: |
docker build . -f docker/Dockerfile.blackwell -t lmsysorg/sglang:blackwell --no-cache
docker buildx build --output type=image,compression=zstd . -f docker/Dockerfile.blackwell -t lmsysorg/sglang:blackwell --no-cache
docker push lmsysorg/sglang:blackwell

View File

@@ -32,5 +32,5 @@ jobs:
- name: Build and Push Dev Image
run: |
docker build . -f docker/Dockerfile.dev -t lmsysorg/sglang:dev --no-cache
docker buildx build --output type=image,compression=zstd . -f docker/Dockerfile.dev -t lmsysorg/sglang:dev --no-cache
docker push lmsysorg/sglang:dev