busbey commented on a change in pull request #1620: URL: https://github.com/apache/hbase/pull/1620#discussion_r439795504
########## File path: dev-support/create-release/hbase-rm/Dockerfile ########## @@ -50,10 +50,15 @@ RUN wget -qO- "https://www.apache.org/dyn/mirrors/mirrors.cgi?action=download&fi tar xvz -C /opt ENV YETUS_HOME /opt/apache-yetus-${YETUS_VERSION} -WORKDIR /opt/hbase-rm/output - ARG UID -RUN useradd -m -s /bin/bash -p hbase-rm -u $UID hbase-rm -USER hbase-rm:hbase-rm +ARG RM_USER +RUN groupadd hbase-rm && \ + useradd --create-home --shell /bin/bash -p hbase-rm -u $UID $RM_USER && \ + mkdir /home/$RM_USER/.gnupg && \ + chown -R $RM_USER:hbase-rm /home/$RM_USER && \ + chmod -R 700 /home/$RM_USER + +USER $RM_USER:hbase-rm +WORKDIR /home/$RM_USER/hbase-rm/ Review comment: you need the gpg directory in the user home directory. this clean up was just because I figured we should be consistent once there was a home directory. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected]
