From c5054cc3bd984a6f1ee5de1f8d805e6357859e11 Mon Sep 17 00:00:00 2001 From: Andy Maksymowicz Date: Fri, 21 Aug 2020 14:58:12 +0000 Subject: [PATCH] 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