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
bb81daef
Unverified
Commit
bb81daef
authored
Jul 27, 2025
by
kyleliang-nv
Committed by
GitHub
Jul 27, 2025
Browse files
Fix docker buildx push error (#8425)
parent
58dd95fb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
.github/workflows/release-docker-gb200.yml
.github/workflows/release-docker-gb200.yml
+1
-2
docker/Dockerfile.gb200
docker/Dockerfile.gb200
+3
-3
No files found.
.github/workflows/release-docker-gb200.yml
View file @
bb81daef
...
...
@@ -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 .
docker/Dockerfile.gb200
View file @
bb81daef
...
...
@@ -139,9 +139,9 @@ RUN apt update -y \
# Set up locale
RUN locale-gen en_US.UTF-8
ENV LANG
en_US.UTF-8
ENV LANGUAGE
en_US:en
ENV LC_ALL
en_US.UTF-8
ENV LANG
=
en_US.UTF-8
ENV LANGUAGE
=
en_US:en
ENV LC_ALL
=
en_US.UTF-8
# Install minimal Python packages
RUN python3 -m pip install --no-cache-dir --break-system-packages \
...
...
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