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
5 changes: 5 additions & 0 deletions ubuntu26.04/precompiled/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ RUN rm -f /etc/apt/sources.list.d/cuda* && \

RUN usermod -o -u 0 -g 0 _apt

# pebble ships in the base image but is unused here; ENTRYPOINT is nvidia-driver, not pebble.
# It isn't dpkg-managed (dpkg -S finds no owning package), so apt/dpkg can't remove it - rm is
# the only option.
Comment on lines +43 to +45

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# pebble ships in the base image but is unused here; ENTRYPOINT is nvidia-driver, not pebble.
# It isn't dpkg-managed (dpkg -S finds no owning package), so apt/dpkg can't remove it - rm is
# the only option.
# pebble ships in the base image but is unused here; ENTRYPOINT is nvidia-driver, not pebble.

RUN rm -rf /usr/bin/pebble /var/lib/pebble
Comment thread
tariq1890 marked this conversation as resolved.

# Install / upgrade packages here that are required to resolve CVEs
ARG CVE_UPDATES
RUN if [ -n "${CVE_UPDATES}" ]; then \
Expand Down