Unverified Commit 8642c4bd authored by Tushar Sharma's avatar Tushar Sharma Committed by GitHub
Browse files

fix: Add jq to sglang wideeep dockerfile (#3820)


Signed-off-by: default avatarTushar Sharma <tusharma@nvidia.com>
parent bdef0ec5
...@@ -12,6 +12,13 @@ FROM lmsysorg/sglang:${SGLANG_IMAGE_TAG} ...@@ -12,6 +12,13 @@ FROM lmsysorg/sglang:${SGLANG_IMAGE_TAG}
WORKDIR /sgl-workspace WORKDIR /sgl-workspace
# Install jq for JSON processing
RUN apt-get update -y \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
jq \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Install dynamo # Install dynamo
# Providing --build-arg BRANCH_TYPE=local will editable install the local dynamo repo # Providing --build-arg BRANCH_TYPE=local will editable install the local dynamo repo
# Providing --build-arg BRANCH_TYPE=remote will editable install the remote dynamo repo # Providing --build-arg BRANCH_TYPE=remote will editable install the remote dynamo repo
......
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