From 8b622e015282bc0a4cab8ecee59a455dcdfe36c7 Mon Sep 17 00:00:00 2001 From: "Dr. Jan-Philip Gehrcke" Date: Wed, 23 Apr 2025 11:26:31 +0000 Subject: [PATCH] Build with Go 1.23.8, update image metadata Signed-off-by: Dr. Jan-Philip Gehrcke --- deployments/container/Dockerfile | 12 ++++++------ deployments/devel/Dockerfile | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/deployments/container/Dockerfile b/deployments/container/Dockerfile index 295d24619..bd094d780 100644 --- a/deployments/container/Dockerfile +++ b/deployments/container/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -ARG GOLANG_VERSION=1.23.1 +ARG GOLANG_VERSION=1.23.8 # We use an ubuntu20.04 base image to allow for a more efficient multi-arch builds. FROM --platform=${BUILDOS}/amd64 nvcr.io/nvidia/cuda:12.8.0-base-ubuntu20.04 AS build @@ -51,15 +51,15 @@ ENV NVIDIA_DRIVER_CAPABILITIES=utility ARG VERSION="N/A" ARG GIT_COMMIT="unknown" -LABEL io.k8s.display-name="NVIDIA DRA Driver" -LABEL name="NVIDIA DRA Driver" +LABEL io.k8s.display-name="NVIDIA DRA Driver for GPUs" +LABEL name="NVIDIA DRA Driver for GPUs" LABEL vendor="NVIDIA" LABEL version=${VERSION} LABEL com.nvidia.git-commit="${GIT_COMMIT}" LABEL release="N/A" -LABEL summary="NVIDIA DRA driver for Kubernetes" -LABEL description="See summary" -LABEL org.opencontainers.image.description "NVIDIA GPU DRA driver for Kubernetes" +LABEL summary="NVIDIA DRA Driver for GPUs" +LABEL description="NVIDIA DRA Driver for GPUs" +LABEL org.opencontainers.image.description "NVIDIA DRA Driver for GPUs" LABEL org.opencontainers.image.source "https://github.com/NVIDIA/k8s-dra-driver-gpu" RUN mkdir /licenses && mv /NGC-DL-CONTAINER-LICENSE /licenses/NGC-DL-CONTAINER-LICENSE diff --git a/deployments/devel/Dockerfile b/deployments/devel/Dockerfile index a06799143..f8566bc96 100644 --- a/deployments/devel/Dockerfile +++ b/deployments/devel/Dockerfile @@ -14,7 +14,7 @@ # This Dockerfile is also used to define the golang version used in this project # This allows dependabot to manage this version in addition to other images. -FROM golang:1.23.1 +FROM golang:1.23.8 WORKDIR /work COPY * .