Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion container/Dockerfile.sglang
Original file line number Diff line number Diff line change
Expand Up @@ -429,8 +429,9 @@ COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
build-essential python3-dev libnuma-dev \
# Curl for polling various endpoints.
# jq and curl for polling various endpoints and health checks
curl \
jq \
# For debugging
vim \
# Libraries required by UCX to find RDMA devices
Expand Down
3 changes: 3 additions & 0 deletions container/Dockerfile.sglang-wideep
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,9 @@ RUN cmake --version
RUN apt-get update -y && \
apt-get install -y --no-install-recommends \
rapidjson-dev \
# jq and curl for polling various endpoints and health checks
jq \
curl \
zlib1g-dev

RUN git clone --depth=1 https://github.com/triton-inference-server/perf_analyzer.git && \
Expand Down
3 changes: 2 additions & 1 deletion container/Dockerfile.tensorrt_llm
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,8 @@ RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
build-essential \
python3-dev \
# Curl for polling various endpoints.
# jq and curl for polling various endpoints and health checks
jq \
curl \
# For debugging
vim \
Expand Down
3 changes: 2 additions & 1 deletion container/Dockerfile.vllm
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,8 @@ RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
build-essential \
python3-dev \
# Curl for polling various endpoints.
# jq and curl for polling various endpoints and health checks
jq \
curl \
# For debugging
vim \
Expand Down
Loading