From 7441b859bd25e7367e8a52c740fd66c624fafc3e Mon Sep 17 00:00:00 2001 From: Andreas Gebhardt Date: Thu, 23 May 2024 18:16:05 +0200 Subject: [PATCH] =?UTF-8?q?update=20container=20=C2=BBubi8/ubi-minimal?= =?UTF-8?q?=C2=AB=20to=208.10-896?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/push.yml | 2 +- Containerfile | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index d4105ca..3b4b09e 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -22,7 +22,7 @@ jobs: strategy: matrix: go: [ '1.20', '1.21', '1.22' ] - container: registry.access.redhat.com/ubi8/ubi-minimal:8.9-1161.1715068733 + container: registry.access.redhat.com/ubi8/ubi-minimal:8.10-896 name: Test and Build w/ Go v${{ matrix.go }} needs: assure-unique-container steps: diff --git a/Containerfile b/Containerfile index a527708..54bbb7d 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.9-1161.1715068733 AS builder +FROM registry.access.redhat.com/ubi8/ubi-minimal:8.10-896 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.9-1161.1715068733 +FROM registry.access.redhat.com/ubi8/ubi-minimal:8.10-896 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.9-1161.1715068733" + org.opencontainers.image.base.name="registry.access.redhat.com/ubi8/ubi-minimal:8.10-896" EXPOSE 9873