From 5dda163ccb9ea12f8869a2ac115ff0feae178ff0 Mon Sep 17 00:00:00 2001 From: Andreas Gebhardt Date: Fri, 10 May 2024 20:05:35 +0200 Subject: [PATCH] =?UTF-8?q?update=20container=20=C2=BBubi8/ubi-minimal?= =?UTF-8?q?=C2=AB=20to=208.9-1161.1715068733?= 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 7c50d1d..d4105ca 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 + container: registry.access.redhat.com/ubi8/ubi-minimal:8.9-1161.1715068733 name: Test and Build w/ Go v${{ matrix.go }} needs: assure-unique-container steps: diff --git a/Containerfile b/Containerfile index 85d6e18..a527708 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 AS builder +FROM registry.access.redhat.com/ubi8/ubi-minimal:8.9-1161.1715068733 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 +FROM registry.access.redhat.com/ubi8/ubi-minimal:8.9-1161.1715068733 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" + org.opencontainers.image.base.name="registry.access.redhat.com/ubi8/ubi-minimal:8.9-1161.1715068733" EXPOSE 9873