"vscode:/vscode.git/clone" did not exist on "624800c4de31399c305c9f62e54db10c096757a9"
Unverified Commit bb81daef authored by kyleliang-nv's avatar kyleliang-nv Committed by GitHub
Browse files

Fix docker buildx push error (#8425)

parent 58dd95fb
......@@ -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 .
......@@ -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 \
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment