From fae21b8f39787698479e8a3667ad47a23aaf38b9 Mon Sep 17 00:00:00 2001 From: tmaeno Date: Tue, 26 Jul 2022 18:26:13 +0200 Subject: [PATCH] chmod /appdata --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e2ef8fb..ab751cf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ ENV ACTIVEMQ_DATA /appdata/activemq ENV ACTIVEMQ_PIDFILE ${ACTIVEMQ_HOME}/tmp/activemq.pid ENV ACTIVEMQ_EXTRA_CONF /data/activemq -RUN apk --no-cache add wget python3 && \ +RUN apk --no-cache add util-linux wget python3 && \ wget https://archive.apache.org/dist/activemq/${VERSION}/${ACTIVEMQ}-bin.tar.gz && \ tar xvfz ${ACTIVEMQ}-bin.tar.gz && \ mv ${ACTIVEMQ} ${ACTIVEMQ_HOME} && \