From 7b8b2e024ebcaa829d43131ec91ffd93075ce288 Mon Sep 17 00:00:00 2001 From: Andreas Gebhardt Date: Thu, 19 Dec 2024 18:15:55 +0100 Subject: [PATCH] =?UTF-8?q?update=20container=20=C2=BBubi8/ubi-minimal?= =?UTF-8?q?=C2=AB=20to=208.10-1154?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Containerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Containerfile b/Containerfile index 8c9d7fb..6198e58 100644 --- a/Containerfile +++ b/Containerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM registry.access.redhat.com/ubi8/ubi-minimal:8.10-1130 AS builder +FROM registry.access.redhat.com/ubi8/ubi-minimal:8.10-1154 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/ \ @@ -21,7 +21,7 @@ RUN microdnf install tar gzip findutils gcc make git \ COPY . ./ RUN PATH=$PATH:/opt/go/bin make -FROM registry.access.redhat.com/ubi8/ubi-minimal:8.10-1130 +FROM registry.access.redhat.com/ubi8/ubi-minimal:8.10-1154 WORKDIR /opt/mq_exporter COPY --from=builder /go/src/github/agebhar1/mq_exporter/mq_exporter ./ @@ -48,7 +48,7 @@ LABEL \ org.opencontainers.image.licenses="Apache-2.0" \ org.opencontainers.image.title="mq_exporter" \ org.opencontainers.image.description="Prometheus exporter for IBM MQ" \ - org.opencontainers.image.base.name="registry.access.redhat.com/ubi8/ubi-minimal:8.10-1130" + org.opencontainers.image.base.name="registry.access.redhat.com/ubi8/ubi-minimal:8.10-1154" EXPOSE 9873