From 48488c6a3ce416d185944906e444c093b4277fc8 Mon Sep 17 00:00:00 2001 From: Andy Maksymowicz Date: Fri, 21 Aug 2020 14:56:53 +0000 Subject: [PATCH 1/3] Update download.yaml --- download.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/download.yaml b/download.yaml index 59dbb42..14826f8 100644 --- a/download.yaml +++ b/download.yaml @@ -1,7 +1,7 @@ --- resources: - - url: "https://downloads.apache.org/activemq/5.15.13/apache-activemq-5.15.13-bin.tar.gz" - filename: "apache-activemq-5.15.13-bin.tar.gz" + - url: "https://downloads.apache.org/activemq/5.16.0/apache-activemq-5.16.0-bin.tar.gz" + filename: "apache-activemq-5.16.0-bin.tar.gz" validation: type: "sha512" - value: "4a237fe2d3cdfbc1b5b45c92a5aab0d009acbfe5383c188b9691100e2e47de0548a1c24e0d8382a88c4600cd2b8792ce75e9be7d88de55f86b0bde7c9a92c285" \ No newline at end of file + value: "999928176e57b0805e8a53834e7f4eb648baf271a0c60de31ebd95fa63f2b089aa41c2ef7353790835e2e8cc39c4b778f535b38e6dc0c67a79c3c1da335c4a0a" \ No newline at end of file -- GitLab From c5054cc3bd984a6f1ee5de1f8d805e6357859e11 Mon Sep 17 00:00:00 2001 From: Andy Maksymowicz Date: Fri, 21 Aug 2020 14:58:12 +0000 Subject: [PATCH 2/3] Update Dockerfile --- Dockerfile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8ab38bf..4e8ef45 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -ARG BASE_REGISTRY=nexus-docker-secure.levelup-dev.io -ARG BASE_IMAGE=redhat/openjdk/openjdk13 +ARG BASE_REGISTRY=registry1.dsop.io +ARG BASE_IMAGE=ironbank/redhat/openjdk/openjdk13 ARG BASE_TAG=1.13.0 FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} @@ -7,22 +7,22 @@ FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} LABEL name="ActiveMQ" \ maintainer="bhearn@anchore.com" \ vendor="Apache" \ - version="5.15.13" \ + version="5.16.0" \ release="1" \ summary="Image of ActiveMQ" \ description="Apache ActiveMQ is an open source, multi-protocol, Java-based messaging server" -COPY apache-activemq-5.15.13-bin.tar.gz / +COPY apache-activemq-5.16.0-bin.tar.gz / # root user is needed to extract files from the ActiveMQ gzip USER root RUN dnf update -y && \ - tar -zxf apache-activemq-5.15.13-bin.tar.gz && \ - rm apache-activemq-5.15.13-bin.tar.gz && \ - chmod 755 apache-activemq-5.15.13/bin/activemq && \ + tar -zxf apache-activemq-5.16.0-bin.tar.gz && \ + rm apache-activemq-5.16.0-bin.tar.gz && \ + chmod 755 apache-activemq-5.16.0/bin/activemq && \ useradd -r activemq --uid=1000 && \ - chown -R activemq:activemq apache-activemq-5.15.13 + chown -R activemq:activemq apache-activemq-5.16.0 USER activemq @@ -30,4 +30,4 @@ EXPOSE 8161 61616 5672 61613 1833 HEALTHCHECK CMD curl localhost:8161 -CMD ["apache-activemq-5.15.13/bin/activemq", " start"] \ No newline at end of file +CMD ["apache-activemq-5.16.0/bin/activemq", " start"] \ No newline at end of file -- GitLab From 788a32b10c9a8205d723f1e25b28fc4bbad970fb Mon Sep 17 00:00:00 2001 From: Andy Maksymowicz Date: Fri, 21 Aug 2020 15:00:13 +0000 Subject: [PATCH 3/3] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index a00bb8c..84b2ebe 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,2 +1,2 @@ @Library('DCCSCR@master') _ -dccscrPipeline(version: "5.15.13") \ No newline at end of file +dccscrPipeline(version: "5.16.0") \ No newline at end of file -- GitLab