From 068d7147ac23d87de4c59e5707c470208165664e Mon Sep 17 00:00:00 2001 From: Tariq Ibrahim Date: Wed, 14 Aug 2024 09:34:03 -0700 Subject: [PATCH] update default go version of the main container image Signed-off-by: Tariq Ibrahim As the go.mod file pins the minimum go version to 1.22.2, it no longer makes sense for the container's default go version to be a values lesser than that. Sp we bump the default golang build arg to 1.22.6 --- deployments/container/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployments/container/Dockerfile b/deployments/container/Dockerfile index b8eea9c86..c182f91f8 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.20.5 +ARG GOLANG_VERSION=1.22.6 FROM nvidia/cuda:12.6.0-base-ubi8 as build RUN yum install -y \