i3587616 opened a new issue, #73:
URL: https://github.com/apache/rocketmq-docker/issues/73

   FROM amazon-corretto-8:latest
   RUN apt-get update && apt-get install -y --no-install-recommends \
   bash libapr1 unzip telnet wget gnupg ca-certificates \
   && rm -rf /var/lib/apt/lists/*
   
   ARG user=rocketmq
   ARG group=rocketmq
   ARG uid=3000
   ARG gid=3000
   
   # RocketMQ is run with user `rocketmq`, uid = 3000
   # If you bind mount a volume from the host or a data container,
   # ensure you use the same uid
   RUN groupadd -g ${gid} ${group} \
       && useradd -u ${uid} -g ${gid} -m -s /bin/bash ${user}
   
   ARG version
   
   # Rocketmq version
   ENV ROCKETMQ_VERSION ${version}
   
   # Rocketmq home
   ENV ROCKETMQ_HOME  /home/rocketmq/rocketmq-${ROCKETMQ_VERSION}
   
   WORKDIR  ${ROCKETMQ_HOME}
   
   RUN set -eux; \
       && wget 
https://archive.apache.org/dist/rocketmq/${ROCKETMQ_VERSION}/rocketmq-all-${ROCKETMQ_VERSION}-bin-release.zip
 -o rocketmq.zip; \
       && wget 
https://archive.apache.org/dist/rocketmq/${ROCKETMQ_VERSION}/rocketmq-all-${ROCKETMQ_VERSION}-bin-release.zip.asc
 -o rocketmq.zip.asc; \
       && #https://www.apache.org/dist/rocketmq/KEYS
       && wget https://www.apache.org/dist/rocketmq/KEYS -o KEYS; \
       \
       && gpg --import KEYS; \
       && gpg --batch --verify rocketmq.zip.asc rocketmq.zip ; \
       && unzip rocketmq.zip ; \
       && mv rocketmq*/* . ; \
       && rmdir rocketmq-*  ; \
        && rm rocketmq.zip rocketmq.zip.asc KEYS
   - ...
   
   is wrong 
   


-- 
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: dev-unsubscr...@rocketmq.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to