From 3a3a4637a231afe3d8fe8b3f9c637563ace03d9c Mon Sep 17 00:00:00 2001 From: Andreas Gebhardt Date: Wed, 7 Aug 2024 19:39:03 +0200 Subject: [PATCH] build w/ Go 1.22.6 --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 2e3c56f..7589228 100644 --- a/Containerfile +++ b/Containerfile @@ -16,7 +16,7 @@ FROM registry.access.redhat.com/ubi8/ubi-minimal:8.10-1018 AS builder WORKDIR /go/src/github/agebhar1/mq_exporter RUN microdnf install tar gzip findutils gcc make git \ && mkdir /opt/mqm && curl -L https://ibm.biz/IBM-MQC-Redist-LinuxX64targz | tar xzf - -C /opt/mqm/ \ - && curl -L https://go.dev/dl/go1.22.5.linux-amd64.tar.gz | tar xzf - -C /opt + && curl -L https://go.dev/dl/go1.22.6.linux-amd64.tar.gz | tar xzf - -C /opt COPY . ./ RUN PATH=$PATH:/opt/go/bin make