Namespace
lmsysorg
Image / Tag
sglang:v0.5.17-xeon
Content Digest
sha256:227f00b98fd4d94afa09aa52283a17b62e547d130d8e25420581bde7a1b22431
Details
Created

2026-08-07 22:51:58 UTC

Size

1.34 GB

Content Digest
Labels
  • org.opencontainers.image.version
    24.04

Environment
LD_PRELOAD

/usr/lib/x86_64-linux-gnu/libtcmalloc.so.4:/usr/lib/x86_64-linux-gnu/libtbbmalloc.so:/opt/.venv/lib/libiomp5.so

PATH

/opt/.venv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

SGLANG_USE_CPU_ENGINE

1

UV_CONFIG_FILE

/opt/.venv/uv.toml

UV_PYTHON_INSTALL_DIR

/usr/local/share/uv/python


Layers

[#000] sha256:966c395d29cb24a3faf7e04f32878fe5778819d4132daee4f47e2aaf7b9af924 - 2.08% (28.4 MB)

[#001] sha256:94a5b2e9980a740fea934a4589e150854a6fcc4c0092f4f8ae728d676234a8b4 - 12.48% (171 MB)

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

[#003] sha256:a72c29ab202c6546f6689e59de6e3f1f4d39d51d371643242e9b625ad35b8b9e - 3.94% (53.8 MB)

[#004] sha256:51766a1560a3b78a9c3fc082d9bb0f10a651b8743155cfb4da79ad6ff96490af - 0.0% (234 Bytes)

[#005] sha256:f07c454440ccba658225eaecaedcf3e2a66aefd3b2d124ad1446559800abc7f9 - 0.0% (103 Bytes)

[#006] sha256:2bb4f76a8622e357d3811e6586d47014e6efb58e71f8443f0e25e01a5e38f7ee - 81.51% (1.09 GB)

[#007] sha256:13873636509b5a9671990b2d1afb18934a913c09bcc727ac2138e223240652d0 - 0.0% (1.56 KB)

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


History
2026-07-31 20:37:20 UTC

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

2026-07-31 20:37:20 UTC

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

2026-07-31 20:37:20 UTC

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

2026-07-31 20:37:22 UTC

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

2026-07-31 20:37:23 UTC

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

2026-08-07 22:49:20 UTC (buildkit.dockerfile.v0)

SHELL [/bin/bash -c]

2026-08-07 22:49:20 UTC (buildkit.dockerfile.v0)

ARG SGLANG_REPO=https://github.com/sgl-project/sglang.git

2026-08-07 22:49:20 UTC (buildkit.dockerfile.v0)

ARG VER_SGLANG=v0.5.17

2026-08-07 22:49:20 UTC (buildkit.dockerfile.v0)

RUN |2 SGLANG_REPO=https://github.com/sgl-project/sglang.git VER_SGLANG=v0.5.17 /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 libsqlite3-dev google-perftools libtbb-dev libnuma-dev numactl # buildkit

2026-08-07 22:49:20 UTC (buildkit.dockerfile.v0)

WORKDIR /opt

2026-08-07 22:49:20 UTC (buildkit.dockerfile.v0)

ENV UV_PYTHON_INSTALL_DIR=/usr/local/share/uv/python

2026-08-07 22:49:22 UTC (buildkit.dockerfile.v0)

RUN |2 SGLANG_REPO=https://github.com/sgl-project/sglang.git VER_SGLANG=v0.5.17 /bin/bash -c curl -LsSf https://astral.sh/uv/install.sh | sh && mv /root/.local/bin/uv /root/.local/bin/uvx /usr/local/bin/ && uv venv --python 3.12 # buildkit

2026-08-07 22:49:22 UTC (buildkit.dockerfile.v0)

RUN |2 SGLANG_REPO=https://github.com/sgl-project/sglang.git VER_SGLANG=v0.5.17 /bin/bash -c echo -e '[[index]]\nname = "torch"\nurl = "https://download.pytorch.org/whl/cpu"\n\n[[index]]\nname = "torchvision"\nurl = "https://download.pytorch.org/whl/cpu"\n\n[[index]]\nname = "torchaudio"\nurl = "https://download.pytorch.org/whl/cpu"\n\n[[index]]\nname = "triton"\nurl = "https://download.pytorch.org/whl/cpu"' > .venv/uv.toml # buildkit

2026-08-07 22:49:22 UTC (buildkit.dockerfile.v0)

ENV UV_CONFIG_FILE=/opt/.venv/uv.toml

2026-08-07 22:49:22 UTC (buildkit.dockerfile.v0)

WORKDIR /sgl-workspace

2026-08-07 22:51:58 UTC (buildkit.dockerfile.v0)

RUN |2 SGLANG_REPO=https://github.com/sgl-project/sglang.git VER_SGLANG=v0.5.17 /bin/bash -c source /opt/.venv/bin/activate && git clone ${SGLANG_REPO} sglang && cd sglang && git checkout ${VER_SGLANG} && cd python && cp pyproject_cpu.toml pyproject.toml && uv pip install . && cd sglang/kernels/aot && cp pyproject_cpu.toml pyproject.toml && uv pip install . # buildkit

2026-08-07 22:51:58 UTC (buildkit.dockerfile.v0)

ENV SGLANG_USE_CPU_ENGINE=1

2026-08-07 22:51:58 UTC (buildkit.dockerfile.v0)

ENV LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libtcmalloc.so.4:/usr/lib/x86_64-linux-gnu/libtbbmalloc.so:/opt/.venv/lib/libiomp5.so

2026-08-07 22:51:58 UTC (buildkit.dockerfile.v0)

ENV PATH=/opt/.venv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2026-08-07 22:51:58 UTC (buildkit.dockerfile.v0)

RUN |2 SGLANG_REPO=https://github.com/sgl-project/sglang.git VER_SGLANG=v0.5.17 /bin/bash -c echo 'source /opt/.venv/bin/activate' >> /root/.bashrc # buildkit

2026-08-07 22:51:58 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