Skip to content
Merged
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@

ARG GFD_IMAGE=nvcr.io/nvidia/k8s-device-plugin:v0.19.0
ARG BUILDER_IMAGE=nvcr.io/nvidia/cuda:13.2.0-base-ubi9
ARG DISTROLESS_BASE_IMAGE=nvcr.io/nvidia/distroless/go:v4.0.2-dev
ARG DISTROLESS_BASE_IMAGE=nvcr.io/nvidia/distroless/go:v4.0.4-dev

FROM ${GFD_IMAGE} as gfd

FROM ${BUILDER_IMAGE} as builder

RUN yum install -y wget make gcc

ARG GOLANG_VERSION=1.25.7
ARG GOLANG_VERSION=1.26.2
RUN set -eux; \
\
arch="$(uname -m)"; \
Expand Down
4 changes: 2 additions & 2 deletions deployments/container/Dockerfile.distroless
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

ARG GFD_IMAGE=nvcr.io/nvidia/k8s-device-plugin:v0.19.0
ARG BUILDER_IMAGE=nvcr.io/nvidia/cuda:13.2.0-base-ubi9
ARG DISTROLESS_BASE_IMAGE=nvcr.io/nvidia/distroless/go:v4.0.2-dev
ARG DISTROLESS_BASE_IMAGE=nvcr.io/nvidia/distroless/go:v4.0.4-dev

FROM ${GFD_IMAGE} as gfd

Expand All @@ -37,7 +37,7 @@ RUN yum install -y wget make gcc
ARG GOPROXY="https://proxy.golang.org,direct"
ENV GOPROXY=$GOPROXY

ARG GOLANG_VERSION=1.25.7
ARG GOLANG_VERSION=1.26.2
RUN set -eux; \
\
arch="$(uname -m)"; \
Expand Down
2 changes: 1 addition & 1 deletion deployments/devel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.25.7
FROM golang:1.26.2

WORKDIR /work
COPY * .
Expand Down
Loading