diff --git a/Dockerfile b/Dockerfile index 1de3a7f3cd4e996876362c6f823e457c324b61ca..8ab38bfd5e7cf0e1934477cea1bebb0e570e3c0f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,8 @@ COPY apache-activemq-5.15.13-bin.tar.gz / # root user is needed to extract files from the ActiveMQ gzip USER root -RUN tar -zxf apache-activemq-5.15.13-bin.tar.gz && \ +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 && \ useradd -r activemq --uid=1000 && \