Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
change
sglang
Commits
6f993e8b
Unverified
Commit
6f993e8b
authored
Sep 19, 2025
by
Yineng Zhang
Committed by
GitHub
Sep 19, 2025
Browse files
chore: cleanup docker image (#10671)
parent
03ce92e5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
20 deletions
+7
-20
.github/workflows/release-docker-dev.yml
.github/workflows/release-docker-dev.yml
+1
-7
.github/workflows/release-docker.yml
.github/workflows/release-docker.yml
+2
-10
python/pyproject.toml
python/pyproject.toml
+4
-3
No files found.
.github/workflows/release-docker-dev.yml
View file @
6f993e8b
...
@@ -12,15 +12,9 @@ jobs:
...
@@ -12,15 +12,9 @@ jobs:
strategy
:
strategy
:
matrix
:
matrix
:
variant
:
variant
:
-
version
:
12.
6
.1
-
version
:
12.
9
.1
type
:
all
type
:
all
tag
:
dev
tag
:
dev
-
version
:
12.8.1
type
:
blackwell
tag
:
blackwell
-
version
:
12.9.1
type
:
blackwell
tag
:
b200-cu129
steps
:
steps
:
-
name
:
Checkout repository
-
name
:
Checkout repository
...
...
.github/workflows/release-docker.yml
View file @
6f993e8b
...
@@ -14,15 +14,8 @@ jobs:
...
@@ -14,15 +14,8 @@ jobs:
environment
:
'
prod'
environment
:
'
prod'
strategy
:
strategy
:
matrix
:
matrix
:
cuda_version
:
[
'
12.6.1'
,
'
12.8.1'
,
'
12.9.1'
]
cuda_version
:
[
'
12.6.1'
,
'
12.9.1'
]
build_type
:
[
'
all'
,
'
blackwell'
]
build_type
:
[
'
all'
]
exclude
:
-
cuda_version
:
'
12.6.1'
build_type
:
'
blackwell'
-
cuda_version
:
'
12.8.1'
build_type
:
'
all'
-
cuda_version
:
'
12.9.1'
build_type
:
'
all'
steps
:
steps
:
-
name
:
Delete huge unnecessary tools folder
-
name
:
Delete huge unnecessary tools folder
run
:
rm -rf /opt/hostedtoolcache
run
:
rm -rf /opt/hostedtoolcache
...
@@ -84,7 +77,6 @@ jobs:
...
@@ -84,7 +77,6 @@ jobs:
fi
fi
docker buildx build --output type=image,compression=zstd . -f docker/Dockerfile --build-arg CUDA_VERSION=${{ matrix.cuda_version }} --build-arg BUILD_TYPE=${{ matrix.build_type }} -t lmsysorg/sglang:${tag}${tag_suffix} --no-cache
docker buildx build --output type=image,compression=zstd . -f docker/Dockerfile --build-arg CUDA_VERSION=${{ matrix.cuda_version }} --build-arg BUILD_TYPE=${{ matrix.build_type }} -t lmsysorg/sglang:${tag}${tag_suffix} --no-cache
docker push lmsysorg/sglang:${tag}${tag_suffix}
if [ "${{ matrix.cuda_version }}" = "12.6.1" ]; then
if [ "${{ matrix.cuda_version }}" = "12.6.1" ]; then
docker tag lmsysorg/sglang:${tag}${tag_suffix} lmsysorg/sglang:latest${tag_suffix}
docker tag lmsysorg/sglang:${tag}${tag_suffix} lmsysorg/sglang:latest${tag_suffix}
...
...
python/pyproject.toml
View file @
6f993e8b
...
@@ -67,6 +67,7 @@ dependencies = [
...
@@ -67,6 +67,7 @@ dependencies = [
"tiktoken"
,
"tiktoken"
,
"anthropic>=0.20.0"
,
"anthropic>=0.20.0"
,
"torch_memory_saver==0.0.8"
,
"torch_memory_saver==0.0.8"
,
"nvidia-cutlass-dsl==4.2.0"
,
]
]
[project.optional-dependencies]
[project.optional-dependencies]
...
@@ -89,9 +90,9 @@ tracing = [
...
@@ -89,9 +90,9 @@ tracing = [
"opentelemetry-exporter-otlp-proto-grpc"
,
"opentelemetry-exporter-otlp-proto-grpc"
,
]
]
all
=
["sglang[test]
", "
sglang
[decord]"]
all
=
["sglang[test]
", "
sglang
[decord]"]
blackwell
=
[
"nvidia-cutlass-dsl==4.2.0"
,
"sglang[test]"
,
"sglang[decord]"
]
blackwell
=
["sglang[test]
", "
sglang
[decord]"]
blackwell_aarch64
=
[
"nvidia-cutlass-dsl==4.2.0"
,
"sglang[test]"
]
blackwell_aarch64
=
["sglang[test]"]
dev
=
["sglang[test]"]
dev
=
["sglang[test]
"
, "
sglang
[decord]"
]
[project.urls]
[project.urls]
"Homepage"
=
"https://github.com/sgl-project/sglang"
"Homepage"
=
"https://github.com/sgl-project/sglang"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment