Skip to content

Commit 6e487f0

Browse files
committed
Update to JRE25 and new Artemis version
This also includes to changes to reflect artemis now being a toplevel apache project
1 parent 119d386 commit 6e487f0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ LABEL maintainer="Per Pascal Seeland <[email protected]"
2525
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
2626
WORKDIR /opt
2727

28-
ENV ACTIVEMQ_ARTEMIS_VERSION=2.42.0
28+
ENV ACTIVEMQ_ARTEMIS_VERSION=2.44.0
2929

3030
ENV ARTEMIS_USER=artemis
3131
ENV ARTEMIS_PASSWORD=artemis
@@ -39,15 +39,15 @@ ENV CONFIG_PATH=${BROKER_HOME}/etc
3939
# add user and group for artemis
4040
RUN apt-get -qq -o=Dpkg::Use-Pty=0 update && \
4141
apt-get -qq -o=Dpkg::Use-Pty=0 install -y --no-install-recommends \
42-
libaio1t64 wget && \
42+
libaio1t64 wget gpg gpg-agent&& \
4343
rm -rf /var/lib/apt/lists/*
4444

4545
USER root
4646

4747
RUN mkdir /var/lib/artemis && chown -R ubuntu.ubuntu /var/lib/artemis
48-
RUN wget "https://repository.apache.org/content/repositories/releases/org/apache/activemq/apache-artemis/${ACTIVEMQ_ARTEMIS_VERSION}/apache-artemis-${ACTIVEMQ_ARTEMIS_VERSION}-bin.tar.gz" && \
49-
wget "https://repository.apache.org/content/repositories/releases/org/apache/activemq/apache-artemis/${ACTIVEMQ_ARTEMIS_VERSION}/apache-artemis-${ACTIVEMQ_ARTEMIS_VERSION}-bin.tar.gz.asc" && \
50-
wget "http://apache.org/dist/activemq/KEYS" && \
48+
RUN wget "https://dlcdn.apache.org/activemq/activemq-artemis/${ACTIVEMQ_ARTEMIS_VERSION}/apache-artemis-${ACTIVEMQ_ARTEMIS_VERSION}-bin.tar.gz" && \
49+
wget "https://dlcdn.apache.org/activemq/activemq-artemis/${ACTIVEMQ_ARTEMIS_VERSION}/apache-artemis-${ACTIVEMQ_ARTEMIS_VERSION}-bin.tar.gz.asc" && \
50+
wget "http://apache.org/dist/artemis/KEYS" && \
5151
gpg --no-tty --import "KEYS" && \
5252
gpg --no-tty "apache-artemis-${ACTIVEMQ_ARTEMIS_VERSION}-bin.tar.gz.asc" && \
5353
tar xfz "apache-artemis-${ACTIVEMQ_ARTEMIS_VERSION}-bin.tar.gz" && \
@@ -62,7 +62,7 @@ RUN /opt/apache-artemis-${ACTIVEMQ_ARTEMIS_VERSION}/bin/artemis create ${CREATE_
6262

6363
FROM eclipse-temurin:25-jre
6464
LABEL maintainer="Pascal Seeland <[email protected]>"
65-
ENV ACTIVEMQ_ARTEMIS_VERSION=2.42.0
65+
ENV ACTIVEMQ_ARTEMIS_VERSION=2.44.0
6666
ENV ACTIVEMQ_ARTEMIS_VERSION=$ACTIVEMQ_ARTEMIS_VERSION
6767
ENV BROKER_HOME=/var/lib/artemis
6868
ENV CONFIG_PATH=${BROKER_HOME}/etc

0 commit comments

Comments
 (0)