From c445296d33d684ac84d8e1a46387da281d38577d Mon Sep 17 00:00:00 2001 From: Aaron Wilson Date: Tue, 22 Oct 2024 12:46:47 -0500 Subject: [PATCH] ci: Update docker image bases to go 1.23 Signed-off-by: Aaron Wilson --- ais-operator-helper/Dockerfile | 2 +- ais-operator-helper/src/go.mod | 2 +- operator/Dockerfile | 2 +- operator/cmd/aisinit/Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ais-operator-helper/Dockerfile b/ais-operator-helper/Dockerfile index 640bead2..dfd712d9 100644 --- a/ais-operator-helper/Dockerfile +++ b/ais-operator-helper/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22-alpine AS builder +FROM golang:1.23-alpine AS builder RUN apk add --no-cache git diff --git a/ais-operator-helper/src/go.mod b/ais-operator-helper/src/go.mod index 94ea6d40..0d05ca4a 100644 --- a/ais-operator-helper/src/go.mod +++ b/ais-operator-helper/src/go.mod @@ -1,3 +1,3 @@ module github.com/NVIDIA/ais-k8s/images/cleanup-helper/src -go 1.22.0 +go 1.23.0 diff --git a/operator/Dockerfile b/operator/Dockerfile index 690ab10e..9ce7e0a9 100644 --- a/operator/Dockerfile +++ b/operator/Dockerfile @@ -1,5 +1,5 @@ # Build the manager binary -FROM golang:1.22 AS builder +FROM golang:1.23 AS builder ARG TARGETOS ARG TARGETARCH diff --git a/operator/cmd/aisinit/Dockerfile b/operator/cmd/aisinit/Dockerfile index 452cf4c8..1d8fdb12 100644 --- a/operator/cmd/aisinit/Dockerfile +++ b/operator/cmd/aisinit/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22 as builder +FROM golang:1.23 as builder ARG TARGETOS ARG TARGETARCH