Namespace
lmsysorg
Image / Tag
sglang:v0.5.3rc0-xeon
Content Digest
sha256:a89e7a1fe4dad1fee030abcfeebcc05625be30293d9b9949bfa2eb0615537af3
Details
Created

2025-09-15 11:00:03 UTC

Size

2.41 GB

Content Digest
Labels
  • org.opencontainers.image.ref.name
    ubuntu
  • org.opencontainers.image.version
    24.04

Environment
CONDA_PREFIX

/sgl-workspace/miniforge3

LD_PRELOAD

/sgl-workspace/miniforge3/lib/libiomp5.so:/sgl-workspace/miniforge3/lib/libtcmalloc.so:/sgl-workspace/miniforge3/lib/libtbbmalloc.so.2

PATH

/sgl-workspace/miniforge3/bin:/sgl-workspace/miniforge3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PIP_ROOT_USER_ACTION

ignore

SGLANG_USE_CPU_ENGINE

1


Layers

[#000] sha256:76249c7cd50397d2e8c06a75106723d057deaba0ffbc7f4af1bb02bcf71d81cf - 1.15% (28.3 MB)

[#001] sha256:93cde01366ac07529ecb68a5ae80066a1dd9a48b08eb41de635e870ab595ef7e - 6.86% (169 MB)

[#002] sha256:32d6af3a309e1ee6ab4fcd9b5039acc5fc69e5e681f4dfaa05c213b39c17567c - 0.0% (103 Bytes)

[#003] sha256:3fab2f4ead1976c2df21521874326c32ab486f6115afdf2cdcf425f171a145c3 - 19.82% (489 MB)

[#004] sha256:f9d7bcde50b407a9f5f4bc082c3ec196713b7e45f659df74a6ee2a59dd6f8b4e - 0.0% (21.5 KB)

[#005] sha256:da2f6caa0fedc2f8051ed8aa1d0652fb33a7c9fbcfcf1a469f9f6502fd2b9ab3 - 72.17% (1.74 GB)

[#006] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)


History
2025-08-19 14:36:58 UTC

/bin/sh -c #(nop) ARG RELEASE

2025-08-19 14:36:58 UTC

/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH

2025-08-19 14:36:58 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu

2025-08-19 14:36:58 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.version=24.04

2025-08-19 14:37:00 UTC

/bin/sh -c #(nop) ADD file:e67907c77897d27192314f6c4fa0112b6f7dce3e127500516535cc50fe736c92 in /

2025-08-19 14:37:01 UTC

/bin/sh -c #(nop) CMD ["/bin/bash"]

2025-09-15 10:55:59 UTC (buildkit.dockerfile.v0)

SHELL [/bin/bash -c]

2025-09-15 10:55:59 UTC (buildkit.dockerfile.v0)

ARG VER_SGLANG=main

2025-09-15 10:55:59 UTC (buildkit.dockerfile.v0)

ARG VER_TORCH=2.7.1

2025-09-15 10:55:59 UTC (buildkit.dockerfile.v0)

ARG VER_TORCHVISION=0.22.1

2025-09-15 10:55:59 UTC (buildkit.dockerfile.v0)

ARG VER_TRITON=3.3.1

2025-09-15 10:55:59 UTC (buildkit.dockerfile.v0)

RUN |4 VER_SGLANG=main VER_TORCH=2.7.1 VER_TORCHVISION=0.22.1 VER_TRITON=3.3.1 /bin/bash -c apt-get update && apt-get full-upgrade -y && DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y ca-certificates git curl wget vim gcc g++ make # buildkit

2025-09-15 10:55:59 UTC (buildkit.dockerfile.v0)

WORKDIR /sgl-workspace

2025-09-15 10:56:26 UTC (buildkit.dockerfile.v0)

RUN |4 VER_SGLANG=main VER_TORCH=2.7.1 VER_TORCHVISION=0.22.1 VER_TRITON=3.3.1 /bin/bash -c curl -fsSL -v -o miniforge.sh -O https://github.com/conda-forge/miniforge/releases/download/24.11.3-2/Miniforge3-24.11.3-2-Linux-x86_64.sh && bash miniforge.sh -b -p ./miniforge3 && rm -f miniforge.sh && . miniforge3/bin/activate && conda install -y libsqlite==3.48.0 gperftools tbb libnuma numactl # buildkit

2025-09-15 10:56:26 UTC (buildkit.dockerfile.v0)

ENV PATH=/sgl-workspace/miniforge3/bin:/sgl-workspace/miniforge3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2025-09-15 10:56:26 UTC (buildkit.dockerfile.v0)

ENV PIP_ROOT_USER_ACTION=ignore

2025-09-15 10:56:26 UTC (buildkit.dockerfile.v0)

ENV CONDA_PREFIX=/sgl-workspace/miniforge3

2025-09-15 10:56:27 UTC (buildkit.dockerfile.v0)

RUN |4 VER_SGLANG=main VER_TORCH=2.7.1 VER_TORCHVISION=0.22.1 VER_TRITON=3.3.1 /bin/bash -c pip config set global.index-url https://download.pytorch.org/whl/cpu && pip config set global.extra-index-url https://pypi.org/simple # buildkit

2025-09-15 11:00:03 UTC (buildkit.dockerfile.v0)

RUN |4 VER_SGLANG=main VER_TORCH=2.7.1 VER_TORCHVISION=0.22.1 VER_TRITON=3.3.1 /bin/bash -c git clone https://github.com/sgl-project/sglang.git && cd sglang && rm -rf python/pyproject.toml && mv python/pyproject_other.toml python/pyproject.toml && git checkout ${VER_SGLANG} && pip install -e "python[all_cpu]" && pip install torch==${VER_TORCH} torchvision==${VER_TORCHVISION} triton==${VER_TRITON} --force-reinstall && cd sgl-kernel && cp pyproject_cpu.toml pyproject.toml && pip install . # buildkit

2025-09-15 11:00:03 UTC (buildkit.dockerfile.v0)

ENV SGLANG_USE_CPU_ENGINE=1

2025-09-15 11:00:03 UTC (buildkit.dockerfile.v0)

ENV LD_PRELOAD=/sgl-workspace/miniforge3/lib/libiomp5.so:/sgl-workspace/miniforge3/lib/libtcmalloc.so:/sgl-workspace/miniforge3/lib/libtbbmalloc.so.2

2025-09-15 11:00:03 UTC (buildkit.dockerfile.v0)

WORKDIR /sgl-workspace/sglang

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete