SamTV12345 commented on code in PR #4307: URL: https://github.com/apache/activemq-artemis/pull/4307#discussion_r1047796359
########## artemis-docker/Dockerfile-ubuntu-11-jre: ########## @@ -17,7 +17,30 @@ # ActiveMQ Artemis +ARG CURRENT_VERSION=2.17.0 + +FROM eclipse-temurin:11-jdk as builder +ARG CURRENT_VERSION + +ENV VERSION=$CURRENT_VERSION + +RUN apt update -y && apt upgrade -y && apt install tree curl -y + +ADD ./prepare-docker.sh /bin/prepareDocker +WORKDIR /root/artemis-build +COPY ./Dockerfile-alpine . Review Comment: It doesn't matter as I don't need the Dockerfile in my multistage build. So I removed the line in the prepareDocker script that checks if a Dockerfile* is available. It still works as expected. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
