Skip to content
Open
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
6 changes: 6 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,12 @@ ENV NVIDIA_DRIVER_CAPABILITIES=compute,utility,compat32
ENV NVIDIA_DISABLE_REQUIRE="true"
ENV NVIDIA_VISIBLE_DEVICES=all

# Remove unused helper binaries from the base image that are built with an
# older Go toolchain and carry known CVEs (e.g. CVE-2025-68121).
# dcgm-exporter does not reference these binaries.
COPY --from=runtime-distroless-helper --chown=root:root --chmod=755 /bin/rm /bin/rm
RUN rm -f /usr/bin/shelless_ulimit_* /usr/bin/sleep_* /bin/rm

# Security Note: Default USER
#
# This container runs as root by default because:
Expand Down