UNCLASSIFIED

You need to sign in or sign up before continuing.
Commit b19a9cf2 authored by Michael Simmons's avatar Michael Simmons
Browse files

Merge branch 'patch-1' into 'development'

fix maintenance issue

See merge request !3
parents 3ad700f5 8cb8e1f5
Pipeline #44448 passed with stage
...@@ -4,12 +4,12 @@ ARG BASE_TAG=1.8.0 ...@@ -4,12 +4,12 @@ ARG BASE_TAG=1.8.0
FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG}
LABEL name="ActiveMQ Artemis" \ LABEL name="Apache ActiveMQ Artemis" \
maintainer="bhearn@anchore.com" \ maintainer="bhearn@anchore.com" \
vendor="Apache" \ vendor="Opensource" \
version="2.15.0" \ version="2.15.0" \
release="1" \ 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." description="Apache ActiveMQ is an open source, multi-protocol, Java-based messaging server."
COPY apache-activemq-artemis.tar.gz /scripts/docker-run.sh opt/ COPY apache-activemq-artemis.tar.gz /scripts/docker-run.sh opt/
...@@ -27,8 +27,8 @@ RUN groupadd -g 1001 -r artemis; \ ...@@ -27,8 +27,8 @@ RUN groupadd -g 1001 -r artemis; \
dnf install -y libaio --setopt=tsflags=nodocs; \ dnf install -y libaio --setopt=tsflags=nodocs; \
dnf clean all; \ dnf clean all; \
rm -rf /var/cache/dnf; \ rm -rf /var/cache/dnf; \
tar -zxf apache-activemq-artemis.tar.gz; \ mkdir -p /opt/activemq-artemis; \
mv apache-artemis-2.14.0 activemq-artemis; \ tar -zxf apache-activemq-artemis.tar.gz --strip-components=1 -C /opt/activemq-artemis; \
rm -f apache-activemq-artemis.tar.gz; \ rm -f apache-activemq-artemis.tar.gz; \
chmod +x docker-run.sh; \ chmod +x docker-run.sh; \
mkdir /var/lib/artemis-instance; \ mkdir /var/lib/artemis-instance; \
......
  • Pipeline Status: SUCCESS
    Branch: development

    graph LR
      0([setup]):::INTERNAL_SUCCESS --> 3([Import Artifacts]):::SUCCESS --> 4((/)):::INTERNAL_SUCCESS --> 5([Stage Artifacts]):::SUCCESS --> 6((/)):::INTERNAL_SUCCESS --> 7([Build]):::SUCCESS --> 8([Publish, Scan & Report]):::INTERNAL_NOT_BUILT
    
    classDef SUCCESS font-size:10px
    classDef FAILURE fill:#f44, font-size:10px
    classDef SKIPPED font-size:10px
    classDef ABORTED fill:#889, font-size:10px
    classDef INTERNAL_SUCCESS font-size:10px, stroke-dasharray: 2, 1
    classDef INTERNAL_FAILURE fill:#f44, font-size:10px, stroke-dasharray: 2, 1
    classDef INTERNAL_SKIPPED font-size:10px, stroke-dasharray: 2, 1
    classDef INTERNAL_ABORTED fill:#889, font-size:10px, stroke-dasharray: 2, 1
    
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment