Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
62c78986
Unverified
Commit
62c78986
authored
Jul 30, 2025
by
Biswa Panda
Committed by
GitHub
Jul 31, 2025
Browse files
fix: add curl and jq for health checks (#2203)
Co-authored-by:
Dmitry Tokarev
<
dtokarev@nvidia.com
>
parent
f8b0a5a9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
3 deletions
+9
-3
container/Dockerfile.sglang
container/Dockerfile.sglang
+2
-1
container/Dockerfile.sglang-wideep
container/Dockerfile.sglang-wideep
+3
-0
container/Dockerfile.tensorrt_llm
container/Dockerfile.tensorrt_llm
+2
-1
container/Dockerfile.vllm
container/Dockerfile.vllm
+2
-1
No files found.
container/Dockerfile.sglang
View file @
62c78986
...
@@ -429,8 +429,9 @@ COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
...
@@ -429,8 +429,9 @@ COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
RUN apt-get update && \
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
build-essential python3-dev libnuma-dev \
build-essential python3-dev libnuma-dev \
#
C
url for polling various endpoints
.
#
jq and c
url for polling various endpoints
and health checks
curl \
curl \
jq \
# For debugging
# For debugging
vim \
vim \
# Libraries required by UCX to find RDMA devices
# Libraries required by UCX to find RDMA devices
...
...
container/Dockerfile.sglang-wideep
View file @
62c78986
...
@@ -152,6 +152,9 @@ RUN cmake --version
...
@@ -152,6 +152,9 @@ RUN cmake --version
RUN apt-get update -y && \
RUN apt-get update -y && \
apt-get install -y --no-install-recommends \
apt-get install -y --no-install-recommends \
rapidjson-dev \
rapidjson-dev \
# jq and curl for polling various endpoints and health checks
jq \
curl \
zlib1g-dev
zlib1g-dev
RUN git clone --depth=1 https://github.com/triton-inference-server/perf_analyzer.git && \
RUN git clone --depth=1 https://github.com/triton-inference-server/perf_analyzer.git && \
...
...
container/Dockerfile.tensorrt_llm
View file @
62c78986
...
@@ -380,7 +380,8 @@ RUN apt-get update && \
...
@@ -380,7 +380,8 @@ RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
build-essential \
build-essential \
python3-dev \
python3-dev \
# Curl for polling various endpoints.
# jq and curl for polling various endpoints and health checks
jq \
curl \
curl \
# For debugging
# For debugging
vim \
vim \
...
...
container/Dockerfile.vllm
View file @
62c78986
...
@@ -437,7 +437,8 @@ RUN apt-get update && \
...
@@ -437,7 +437,8 @@ RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
build-essential \
build-essential \
python3-dev \
python3-dev \
# Curl for polling various endpoints.
# jq and curl for polling various endpoints and health checks
jq \
curl \
curl \
# For debugging
# For debugging
vim \
vim \
...
...
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