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
16451f48
Unverified
Commit
16451f48
authored
Jan 12, 2026
by
Tushar Sharma
Committed by
GitHub
Jan 12, 2026
Browse files
chore: explicitly install GPG package in containers (#5374)
Signed-off-by:
Tushar Sharma
<
tusharma@nvidia.com
>
parent
7fdc742e
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
1 deletion
+13
-1
container/Dockerfile
container/Dockerfile
+2
-1
container/Dockerfile.sglang
container/Dockerfile.sglang
+7
-0
container/Dockerfile.trtllm
container/Dockerfile.trtllm
+2
-0
container/Dockerfile.vllm
container/Dockerfile.vllm
+2
-0
No files found.
container/Dockerfile
View file @
16451f48
...
...
@@ -568,6 +568,8 @@ RUN apt-get update -y \
# required for EPP
ca-certificates \
libstdc++6 \
# required for verification of GPG keys
gnupg2 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
...
...
@@ -582,7 +584,6 @@ RUN userdel -r ubuntu > /dev/null 2>&1 || true \
# Set HOME so ModelExpress can find the cache directory
ENV
HOME=/home/dynamo
# Switch to dynamo user
USER
dynamo
ENV
DYNAMO_HOME=/opt/dynamo
...
...
container/Dockerfile.sglang
View file @
16451f48
...
...
@@ -474,6 +474,13 @@ RUN userdel -r ubuntu > /dev/null 2>&1 || true \
# NOTE: Setting ENV UMASK=002 does NOT work - umask is a shell builtin, not an environment variable
&& mkdir -p /etc/profile.d && echo 'umask 002' > /etc/profile.d/00-umask.sh
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
# required for verification of GPG keys
gnupg2 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Copy attribution files
COPY --chmod=664 --chown=dynamo:0 ATTRIBUTION* LICENSE /workspace/
...
...
container/Dockerfile.trtllm
View file @
16451f48
...
...
@@ -679,6 +679,8 @@ RUN if [ ${ARCH_ALT} = "x86_64" ]; then \
ninja-build \
git \
git-lfs \
# required for verification of GPG keys
gnupg2 \
# Python runtime - CRITICAL for virtual environment to work
python${PYTHON_VERSION}-dev \
python3-pip \
...
...
container/Dockerfile.vllm
View file @
16451f48
...
...
@@ -650,6 +650,8 @@ RUN apt-get update && \
jq \
git \
git-lfs \
# required for verification of GPG keys
gnupg2 \
curl \
# Libraries required by UCX to find RDMA devices
libibverbs1 rdma-core ibverbs-utils libibumad3 \
...
...
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