Skip to content
Open
Show file tree
Hide file tree
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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ $(DRIVER_BUILD_TARGETS):
--build-arg CUDA_VERSION="$(CUDA_VERSION)" \
--build-arg CVE_UPDATES="$(CVE_UPDATES)" \
--build-arg GIT_COMMIT="$(GIT_COMMIT)" \
--build-arg BUILD_TIMESTAMP="$(shell date -u +"%Y-%m-%dT%H:%M:%SZ")" \
$(DOCKER_BUILD_ARGS) \
--file $(DOCKERFILE) \
$(CURDIR)/$(SUBDIR)
Expand Down Expand Up @@ -278,6 +279,8 @@ $(VGPU_GUEST_DRIVER_BUILD_TARGETS):
--build-arg DRIVER_BRANCH="$(DRIVER_BRANCH)" \
--build-arg GOLANG_VERSION="$(GOLANG_VERSION)" \
--build-arg CVE_UPDATES="$(CVE_UPDATES)" \
--build-arg GIT_COMMIT="$(GIT_COMMIT)" \
--build-arg BUILD_TIMESTAMP="$(shell date -u +"%Y-%m-%dT%H:%M:%SZ")" \
$(DOCKER_BUILD_ARGS) \
--file $(DOCKERFILE) \
$(CURDIR)/$(SUBDIR)
Expand Down Expand Up @@ -322,6 +325,8 @@ $(VGPU_HOST_DRIVER_BUILD_TARGETS):
--build-arg CVE_UPDATES="$(CVE_UPDATES)" \
--build-arg CUDA_VERSION="$(CUDA_VERSION)" \
--build-arg CUSTOM_CA_CERTS_DIR="$(CUSTOM_CA_CERTS_DIR)" \
--build-arg GIT_COMMIT="$(GIT_COMMIT)" \
--build-arg BUILD_TIMESTAMP="$(shell date -u +"%Y-%m-%dT%H:%M:%SZ")" \
$(DOCKER_BUILD_ARGS) \
--file $(DOCKERFILE) \
$(CURDIR)/vgpu-manager/$(SUBDIR)
Expand Down
11 changes: 11 additions & 0 deletions rhel10/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@ COPY ${PUBLIC_KEY} kernel/pubkey.x509
ARG PRIVATE_KEY
ARG KERNEL_VERSION=latest

ARG BUILD_TIMESTAMP

LABEL io.k8s.display-name="NVIDIA Driver Container"
LABEL name="NVIDIA Driver Container"
LABEL vendor="NVIDIA"
Expand All @@ -104,6 +106,15 @@ LABEL vcs-ref="${GIT_COMMIT}"
LABEL release="N/A"
LABEL summary="Provision the NVIDIA driver through containers"
LABEL description="See summary"
LABEL org.opencontainers.image.base.name="registry.access.redhat.com/ubi10/ubi"
LABEL org.opencontainers.image.created="${BUILD_TIMESTAMP}"
LABEL org.opencontainers.image.documentation="https://docs.nvidia.com/datacenter/cloud-native/gpu-operator"
LABEL org.opencontainers.image.revision="${GIT_COMMIT}"
LABEL org.opencontainers.image.source="https://github.com/NVIDIA/gpu-driver-container.git"
LABEL org.opencontainers.image.title="NVIDIA Driver Container"
LABEL org.opencontainers.image.url="https://catalog.ngc.nvidia.com/orgs/nvidia/containers/driver"
LABEL org.opencontainers.image.vendor="NVIDIA"
LABEL org.opencontainers.image.version="${DRIVER_VERSION}"

# Install / upgrade packages here that are required to resolve CVEs
ARG CVE_UPDATES
Expand Down
11 changes: 11 additions & 0 deletions rhel10/precompiled/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,8 @@ RUN if [ -n "${CVE_UPDATES}" ]; then \
&& dnf clean all \
&& rm /usr/local/bin/rhsm-register

ARG BUILD_TIMESTAMP

LABEL io.k8s.display-name="NVIDIA Driver Container"
LABEL name="NVIDIA Driver Container"
LABEL vendor="NVIDIA"
Expand All @@ -197,6 +199,15 @@ LABEL vcs-ref="${GIT_COMMIT}"
LABEL release="${KERNEL_VERSION}-${OS_TAG}"
LABEL summary="Provision the NVIDIA driver through containers"
LABEL description="See summary"
LABEL org.opencontainers.image.base.name="nvcr.io/nvidia/cuda"
LABEL org.opencontainers.image.created="${BUILD_TIMESTAMP}"

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.

suggestion: add an org.opencontainers.image.description="Provision the NVIDIA driver through containers".

Optionally, remove the plain description label above or match its value as well.

LABEL org.opencontainers.image.documentation="https://docs.nvidia.com/datacenter/cloud-native/gpu-operator"
LABEL org.opencontainers.image.revision="${GIT_COMMIT}"
LABEL org.opencontainers.image.source="https://github.com/NVIDIA/gpu-driver-container.git"
LABEL org.opencontainers.image.title="NVIDIA Driver Container"
LABEL org.opencontainers.image.url="https://catalog.ngc.nvidia.com/orgs/nvidia/containers/driver"
LABEL org.opencontainers.image.vendor="NVIDIA"
LABEL org.opencontainers.image.version="${DRIVER_VERSION}"

# Add NGC DL license from the CUDA image
RUN mkdir /licenses && mv /NGC-DL-CONTAINER-LICENSE /licenses/NGC-DL-CONTAINER-LICENSE
Expand Down
11 changes: 11 additions & 0 deletions rhel8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ COPY ${PUBLIC_KEY} kernel/pubkey.x509
ARG PRIVATE_KEY
ARG KERNEL_VERSION=latest

ARG BUILD_TIMESTAMP

LABEL io.k8s.display-name="NVIDIA Driver Container"
LABEL name="NVIDIA Driver Container"
LABEL vendor="NVIDIA"
Expand All @@ -102,6 +104,15 @@ LABEL vcs-ref="${GIT_COMMIT}"
LABEL release="N/A"
LABEL summary="Provision the NVIDIA driver through containers"
LABEL description="See summary"
LABEL org.opencontainers.image.base.name="registry.access.redhat.com/ubi8/ubi"
LABEL org.opencontainers.image.created="${BUILD_TIMESTAMP}"
LABEL org.opencontainers.image.documentation="https://docs.nvidia.com/datacenter/cloud-native/gpu-operator"
LABEL org.opencontainers.image.revision="${GIT_COMMIT}"
LABEL org.opencontainers.image.source="https://github.com/NVIDIA/gpu-driver-container.git"
LABEL org.opencontainers.image.title="NVIDIA Driver Container"
LABEL org.opencontainers.image.url="https://catalog.ngc.nvidia.com/orgs/nvidia/containers/driver"
LABEL org.opencontainers.image.vendor="NVIDIA"
LABEL org.opencontainers.image.version="${DRIVER_VERSION}"

# Install / upgrade packages here that are required to resolve CVEs
ARG CVE_UPDATES
Expand Down
11 changes: 11 additions & 0 deletions rhel8/precompiled/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,8 @@ RUN if [ -n "${CVE_UPDATES}" ]; then \
&& dnf clean all \
&& subscription-manager unregister

ARG BUILD_TIMESTAMP

LABEL io.k8s.display-name="NVIDIA Driver Container"
LABEL name="NVIDIA Driver Container"
LABEL vendor="NVIDIA"
Expand All @@ -152,6 +154,15 @@ LABEL vcs-ref="${GIT_COMMIT}"
LABEL release="N/A"
LABEL summary="Provision the NVIDIA driver through containers"
LABEL description="See summary"
LABEL org.opencontainers.image.base.name="nvcr.io/nvidia/cuda"
LABEL org.opencontainers.image.created="${BUILD_TIMESTAMP}"
LABEL org.opencontainers.image.documentation="https://docs.nvidia.com/datacenter/cloud-native/gpu-operator"
LABEL org.opencontainers.image.revision="${GIT_COMMIT}"
LABEL org.opencontainers.image.source="https://github.com/NVIDIA/gpu-driver-container.git"
LABEL org.opencontainers.image.title="NVIDIA Driver Container"
LABEL org.opencontainers.image.url="https://catalog.ngc.nvidia.com/orgs/nvidia/containers/driver"
LABEL org.opencontainers.image.vendor="NVIDIA"
LABEL org.opencontainers.image.version="${DRIVER_VERSION}"

# Add NGC DL license from the CUDA image
RUN mkdir /licenses && mv /NGC-DL-CONTAINER-LICENSE /licenses/NGC-DL-CONTAINER-LICENSE
Expand Down
11 changes: 11 additions & 0 deletions rhel9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ COPY ${PUBLIC_KEY} kernel/pubkey.x509
ARG PRIVATE_KEY
ARG KERNEL_VERSION=latest

ARG BUILD_TIMESTAMP

LABEL io.k8s.display-name="NVIDIA Driver Container"
LABEL name="NVIDIA Driver Container"
LABEL vendor="NVIDIA"
Expand All @@ -103,6 +105,15 @@ LABEL vcs-ref="${GIT_COMMIT}"
LABEL release="N/A"
LABEL summary="Provision the NVIDIA driver through containers"
LABEL description="See summary"
LABEL org.opencontainers.image.base.name="registry.access.redhat.com/ubi9/ubi"
LABEL org.opencontainers.image.created="${BUILD_TIMESTAMP}"
LABEL org.opencontainers.image.documentation="https://docs.nvidia.com/datacenter/cloud-native/gpu-operator"
LABEL org.opencontainers.image.revision="${GIT_COMMIT}"
LABEL org.opencontainers.image.source="https://github.com/NVIDIA/gpu-driver-container.git"
LABEL org.opencontainers.image.title="NVIDIA Driver Container"
LABEL org.opencontainers.image.url="https://catalog.ngc.nvidia.com/orgs/nvidia/containers/driver"
LABEL org.opencontainers.image.vendor="NVIDIA"
LABEL org.opencontainers.image.version="${DRIVER_VERSION}"

# Install / upgrade packages here that are required to resolve CVEs
ARG CVE_UPDATES
Expand Down
11 changes: 11 additions & 0 deletions rhel9/precompiled/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,8 @@ RUN if [ -n "${CVE_UPDATES}" ]; then \
&& dnf clean all \
&& rm /usr/local/bin/rhsm-register

ARG BUILD_TIMESTAMP

LABEL io.k8s.display-name="NVIDIA Driver Container"
LABEL name="NVIDIA Driver Container"
LABEL vendor="NVIDIA"
Expand All @@ -197,6 +199,15 @@ LABEL vcs-ref="${GIT_COMMIT}"
LABEL release="${KERNEL_VERSION}-${OS_TAG}"
LABEL summary="Provision the NVIDIA driver through containers"
LABEL description="See summary"
LABEL org.opencontainers.image.base.name="nvcr.io/nvidia/cuda"
LABEL org.opencontainers.image.created="${BUILD_TIMESTAMP}"
LABEL org.opencontainers.image.documentation="https://docs.nvidia.com/datacenter/cloud-native/gpu-operator"
LABEL org.opencontainers.image.revision="${GIT_COMMIT}"
LABEL org.opencontainers.image.source="https://github.com/NVIDIA/gpu-driver-container.git"
LABEL org.opencontainers.image.title="NVIDIA Driver Container"
LABEL org.opencontainers.image.url="https://catalog.ngc.nvidia.com/orgs/nvidia/containers/driver"
LABEL org.opencontainers.image.vendor="NVIDIA"
LABEL org.opencontainers.image.version="${DRIVER_VERSION}"

# Add NGC DL license from the CUDA image
RUN mkdir /licenses && mv /NGC-DL-CONTAINER-LICENSE /licenses/NGC-DL-CONTAINER-LICENSE
Expand Down
11 changes: 11 additions & 0 deletions ubuntu22.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ RUN if [ -n "${CVE_UPDATES}" ]; then \
rm -rf /var/lib/apt/lists/*; \
fi

ARG BUILD_TIMESTAMP

LABEL io.k8s.display-name="NVIDIA Driver Container"
LABEL name="NVIDIA Driver Container"
LABEL vendor="NVIDIA"
Expand All @@ -116,5 +118,14 @@ LABEL vcs-ref="${GIT_COMMIT}"
LABEL release="N/A"
LABEL summary="Provision the NVIDIA driver through containers"
LABEL description="See summary"
LABEL org.opencontainers.image.base.name="docker.io/library/ubuntu"
LABEL org.opencontainers.image.created="${BUILD_TIMESTAMP}"
LABEL org.opencontainers.image.documentation="https://docs.nvidia.com/datacenter/cloud-native/gpu-operator"
LABEL org.opencontainers.image.revision="${GIT_COMMIT}"
LABEL org.opencontainers.image.source="https://github.com/NVIDIA/gpu-driver-container.git"
LABEL org.opencontainers.image.title="NVIDIA Driver Container"
LABEL org.opencontainers.image.url="https://catalog.ngc.nvidia.com/orgs/nvidia/containers/driver"
LABEL org.opencontainers.image.vendor="NVIDIA"
LABEL org.opencontainers.image.version="${DRIVER_VERSION}"

ENTRYPOINT ["nvidia-driver", "init"]
11 changes: 11 additions & 0 deletions ubuntu22.04/precompiled/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ WORKDIR /drivers
# Remove cuda repository to avoid GPG errors
RUN rm -f /etc/apt/sources.list.d/cuda*

ARG BUILD_TIMESTAMP

LABEL io.k8s.display-name="NVIDIA Driver Container"
LABEL name="NVIDIA Driver Container"
LABEL vendor="NVIDIA"
Expand All @@ -79,5 +81,14 @@ LABEL vcs-ref="${GIT_COMMIT}"
LABEL release="N/A"
LABEL summary="Provision the NVIDIA driver through containers"
LABEL description="See summary"
LABEL org.opencontainers.image.base.name="docker.io/library/ubuntu"
LABEL org.opencontainers.image.created="${BUILD_TIMESTAMP}"
LABEL org.opencontainers.image.documentation="https://docs.nvidia.com/datacenter/cloud-native/gpu-operator"
LABEL org.opencontainers.image.revision="${GIT_COMMIT}"
LABEL org.opencontainers.image.source="https://github.com/NVIDIA/gpu-driver-container.git"
LABEL org.opencontainers.image.title="NVIDIA Driver Container"
LABEL org.opencontainers.image.url="https://catalog.ngc.nvidia.com/orgs/nvidia/containers/driver"
LABEL org.opencontainers.image.vendor="NVIDIA"
LABEL org.opencontainers.image.version="${DRIVER_BRANCH}-${KERNEL_VERSION}"

ENTRYPOINT ["nvidia-driver", "init"]
11 changes: 11 additions & 0 deletions ubuntu24.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ RUN if [ -n "${CVE_UPDATES}" ]; then \
rm -rf /var/lib/apt/lists/*; \
fi

ARG BUILD_TIMESTAMP

LABEL io.k8s.display-name="NVIDIA Driver Container"
LABEL name="NVIDIA Driver Container"
LABEL vendor="NVIDIA"
Expand All @@ -105,5 +107,14 @@ LABEL vcs-ref="${GIT_COMMIT}"
LABEL release="N/A"
LABEL summary="Provision the NVIDIA driver through containers"
LABEL description="See summary"
LABEL org.opencontainers.image.base.name="docker.io/library/ubuntu"
LABEL org.opencontainers.image.created="${BUILD_TIMESTAMP}"
LABEL org.opencontainers.image.documentation="https://docs.nvidia.com/datacenter/cloud-native/gpu-operator"
LABEL org.opencontainers.image.revision="${GIT_COMMIT}"
LABEL org.opencontainers.image.source="https://github.com/NVIDIA/gpu-driver-container.git"
LABEL org.opencontainers.image.title="NVIDIA Driver Container"
LABEL org.opencontainers.image.url="https://catalog.ngc.nvidia.com/orgs/nvidia/containers/driver"
LABEL org.opencontainers.image.vendor="NVIDIA"
LABEL org.opencontainers.image.version="${DRIVER_VERSION}"

ENTRYPOINT ["nvidia-driver", "init"]
11 changes: 11 additions & 0 deletions ubuntu24.04/precompiled/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ RUN mkdir -p /usr/local/repos && \

WORKDIR /drivers

ARG BUILD_TIMESTAMP

LABEL io.k8s.display-name="NVIDIA Driver Container"
LABEL name="NVIDIA Driver Container"
LABEL vendor="NVIDIA"
Expand All @@ -71,5 +73,14 @@ LABEL vcs-ref="${GIT_COMMIT}"
LABEL release="N/A"
LABEL summary="Provision the NVIDIA driver through containers"
LABEL description="See summary"
LABEL org.opencontainers.image.base.name="docker.io/library/ubuntu"
LABEL org.opencontainers.image.created="${BUILD_TIMESTAMP}"
LABEL org.opencontainers.image.documentation="https://docs.nvidia.com/datacenter/cloud-native/gpu-operator"
LABEL org.opencontainers.image.revision="${GIT_COMMIT}"
LABEL org.opencontainers.image.source="https://github.com/NVIDIA/gpu-driver-container.git"
LABEL org.opencontainers.image.title="NVIDIA Driver Container"
LABEL org.opencontainers.image.url="https://catalog.ngc.nvidia.com/orgs/nvidia/containers/driver"
LABEL org.opencontainers.image.vendor="NVIDIA"
LABEL org.opencontainers.image.version="${DRIVER_BRANCH}-${KERNEL_VERSION}"

ENTRYPOINT ["nvidia-driver", "init"]
11 changes: 11 additions & 0 deletions ubuntu26.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ RUN if [ -n "${CVE_UPDATES}" ]; then \
rm -rf /var/lib/apt/lists/*; \
fi

ARG BUILD_TIMESTAMP

LABEL io.k8s.display-name="NVIDIA Driver Container"
LABEL name="NVIDIA Driver Container"
LABEL vendor="NVIDIA"
Expand All @@ -96,5 +98,14 @@ LABEL vcs-ref="${GIT_COMMIT}"
LABEL release="N/A"
LABEL summary="Provision the NVIDIA driver through containers"
LABEL description="See summary"
LABEL org.opencontainers.image.base.name="docker.io/library/ubuntu"
LABEL org.opencontainers.image.created="${BUILD_TIMESTAMP}"
LABEL org.opencontainers.image.documentation="https://docs.nvidia.com/datacenter/cloud-native/gpu-operator"
LABEL org.opencontainers.image.revision="${GIT_COMMIT}"
LABEL org.opencontainers.image.source="https://github.com/NVIDIA/gpu-driver-container.git"
LABEL org.opencontainers.image.title="NVIDIA Driver Container"
LABEL org.opencontainers.image.url="https://catalog.ngc.nvidia.com/orgs/nvidia/containers/driver"
LABEL org.opencontainers.image.vendor="NVIDIA"
LABEL org.opencontainers.image.version="${DRIVER_VERSION}"

ENTRYPOINT ["nvidia-driver", "init"]
11 changes: 11 additions & 0 deletions ubuntu26.04/precompiled/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ RUN mkdir -p /usr/local/repos && \

WORKDIR /drivers

ARG BUILD_TIMESTAMP

LABEL io.k8s.display-name="NVIDIA Driver Container"
LABEL name="NVIDIA Driver Container"
LABEL vendor="NVIDIA"
Expand All @@ -68,5 +70,14 @@ LABEL vcs-ref="${GIT_COMMIT}"
LABEL release="N/A"
LABEL summary="Provision the NVIDIA driver through containers"
LABEL description="See summary"
LABEL org.opencontainers.image.base.name="docker.io/library/ubuntu"
LABEL org.opencontainers.image.created="${BUILD_TIMESTAMP}"
LABEL org.opencontainers.image.documentation="https://docs.nvidia.com/datacenter/cloud-native/gpu-operator"
LABEL org.opencontainers.image.revision="${GIT_COMMIT}"
LABEL org.opencontainers.image.source="https://github.com/NVIDIA/gpu-driver-container.git"
LABEL org.opencontainers.image.title="NVIDIA Driver Container"
LABEL org.opencontainers.image.url="https://catalog.ngc.nvidia.com/orgs/nvidia/containers/driver"
LABEL org.opencontainers.image.vendor="NVIDIA"
LABEL org.opencontainers.image.version="${DRIVER_BRANCH}-${KERNEL_VERSION}"

ENTRYPOINT ["nvidia-driver", "init"]
10 changes: 10 additions & 0 deletions vgpu-manager/rhel10/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ RUN dnf install -y gcc make kmod pciutils procps-ng && \
dnf clean all && \
rm -rf /var/cache/dnf/*

ARG BUILD_TIMESTAMP

LABEL io.k8s.display-name="NVIDIA vGPU Manager Container"
LABEL name="NVIDIA vGPU Manager Container"
LABEL vendor="NVIDIA"
Expand All @@ -48,6 +50,14 @@ LABEL vcs-ref="${GIT_COMMIT}"
LABEL release="N/A"
LABEL summary="Provision the NVIDIA vGPU Manager through containers"
LABEL description="See summary"
LABEL org.opencontainers.image.base.name="registry.access.redhat.com/ubi10/ubi"
LABEL org.opencontainers.image.created="${BUILD_TIMESTAMP}"
LABEL org.opencontainers.image.documentation="https://docs.nvidia.com/datacenter/cloud-native/gpu-operator"
LABEL org.opencontainers.image.revision="${GIT_COMMIT}"
LABEL org.opencontainers.image.source="https://github.com/NVIDIA/gpu-driver-container.git"
LABEL org.opencontainers.image.title="NVIDIA vGPU Manager Container"
LABEL org.opencontainers.image.vendor="NVIDIA"
LABEL org.opencontainers.image.version="${DRIVER_VERSION}"

# Install / upgrade packages here that are required to resolve CVEs
ARG CVE_UPDATES
Expand Down
10 changes: 10 additions & 0 deletions vgpu-manager/rhel8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ RUN dnf install -y pciutils && \
dnf clean all && \
rm -rf /var/cache/dnf/*

ARG BUILD_TIMESTAMP

LABEL io.k8s.display-name="NVIDIA vGPU Manager Container"
LABEL name="NVIDIA vGPU Manager Container"
LABEL vendor="NVIDIA"
Expand All @@ -35,6 +37,14 @@ LABEL vcs-ref="${GIT_COMMIT}"
LABEL release="N/A"
LABEL summary="Provision the NVIDIA vGPU Manager through containers"
LABEL description="See summary"
LABEL org.opencontainers.image.base.name="nvcr.io/nvidia/cuda"
LABEL org.opencontainers.image.created="${BUILD_TIMESTAMP}"
LABEL org.opencontainers.image.documentation="https://docs.nvidia.com/datacenter/cloud-native/gpu-operator"
LABEL org.opencontainers.image.revision="${GIT_COMMIT}"
LABEL org.opencontainers.image.source="https://github.com/NVIDIA/gpu-driver-container.git"
LABEL org.opencontainers.image.title="NVIDIA vGPU Manager Container"
LABEL org.opencontainers.image.vendor="NVIDIA"
LABEL org.opencontainers.image.version="${DRIVER_VERSION}"

# Install / upgrade packages here that are required to resolve CVEs
ARG CVE_UPDATES
Expand Down
10 changes: 10 additions & 0 deletions vgpu-manager/rhel9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ RUN dnf install -y pciutils && \
dnf clean all && \
rm -rf /var/cache/dnf/*

ARG BUILD_TIMESTAMP

LABEL io.k8s.display-name="NVIDIA vGPU Manager Container"
LABEL name="NVIDIA vGPU Manager Container"
LABEL vendor="NVIDIA"
Expand All @@ -48,6 +50,14 @@ LABEL vcs-ref="${GIT_COMMIT}"
LABEL release="N/A"
LABEL summary="Provision the NVIDIA vGPU Manager through containers"
LABEL description="See summary"
LABEL org.opencontainers.image.base.name="nvcr.io/nvidia/cuda"
LABEL org.opencontainers.image.created="${BUILD_TIMESTAMP}"
LABEL org.opencontainers.image.documentation="https://docs.nvidia.com/datacenter/cloud-native/gpu-operator"
LABEL org.opencontainers.image.revision="${GIT_COMMIT}"
LABEL org.opencontainers.image.source="https://github.com/NVIDIA/gpu-driver-container.git"
LABEL org.opencontainers.image.title="NVIDIA vGPU Manager Container"
LABEL org.opencontainers.image.vendor="NVIDIA"
LABEL org.opencontainers.image.version="${DRIVER_VERSION}"

# Install / upgrade packages here that are required to resolve CVEs
ARG CVE_UPDATES
Expand Down
Loading
Loading