diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 6b17c7a..7381978 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -22,7 +22,7 @@ jobs: strategy: matrix: go: [ '1.21', '1.22', '1.23' ] - container: registry.access.redhat.com/ubi8/ubi-minimal:8.10-1052.1724178568 + container: registry.access.redhat.com/ubi8/ubi-minimal:8.10-1086 name: Test and Build w/ Go v${{ matrix.go }} needs: assure-unique-container steps: diff --git a/Containerfile b/Containerfile index 43fb337..f88211c 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-1052.1724178568 AS builder +FROM registry.access.redhat.com/ubi8/ubi-minimal:8.10-1086 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-1052.1724178568 +FROM registry.access.redhat.com/ubi8/ubi-minimal:8.10-1086 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-1052.1724178568" + org.opencontainers.image.base.name="registry.access.redhat.com/ubi8/ubi-minimal:8.10-1086" EXPOSE 9873