Unverified Commit 62c78986 authored by Biswa Panda's avatar Biswa Panda Committed by GitHub
Browse files

fix: add curl and jq for health checks (#2203)


Co-authored-by: default avatarDmitry Tokarev <dtokarev@nvidia.com>
parent f8b0a5a9
...@@ -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 \
# Curl for polling various endpoints. # jq and curl 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
......
...@@ -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 && \
......
...@@ -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 \
......
...@@ -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 \
......
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