From 8cb8e1f54e161fb96061ce55b08eef58ce116ac9 Mon Sep 17 00:00:00 2001 From: bhearn Date: Mon, 28 Sep 2020 11:59:48 -0600 Subject: [PATCH] fix maintenance issue --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3d93e32..74603cf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,12 +4,12 @@ ARG BASE_TAG=1.8.0 FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} -LABEL name="ActiveMQ Artemis" \ +LABEL name="Apache ActiveMQ Artemis" \ maintainer="bhearn@anchore.com" \ - vendor="Apache" \ + vendor="Opensource" \ version="2.15.0" \ release="1" \ - summary="Image of ActiveMQ Artemis" \ + summary="Image of Apache ActiveMQ Artemis" \ description="Apache ActiveMQ is an open source, multi-protocol, Java-based messaging server." COPY apache-activemq-artemis.tar.gz /scripts/docker-run.sh opt/ @@ -27,8 +27,8 @@ RUN groupadd -g 1001 -r artemis; \ dnf install -y libaio --setopt=tsflags=nodocs; \ dnf clean all; \ rm -rf /var/cache/dnf; \ - tar -zxf apache-activemq-artemis.tar.gz; \ - mv apache-artemis-2.14.0 activemq-artemis; \ + mkdir -p /opt/activemq-artemis; \ + tar -zxf apache-activemq-artemis.tar.gz --strip-components=1 -C /opt/activemq-artemis; \ rm -f apache-activemq-artemis.tar.gz; \ chmod +x docker-run.sh; \ mkdir /var/lib/artemis-instance; \ -- GitLab