shreemaan-abhishek commented on code in PR #617: URL: https://github.com/apache/apisix-docker/pull/617#discussion_r3050116485
########## redhat/Dockerfile: ########## @@ -35,11 +35,19 @@ WORKDIR /usr/local/apisix ENV PATH=$PATH:/usr/local/openresty/luajit/bin:/usr/local/openresty/nginx/sbin:/usr/local/openresty/bin +RUN groupadd --system --gid 636 apisix \ + && useradd --system --gid apisix --no-create-home --shell /usr/sbin/nologin --uid 636 apisix \ + && chown -R apisix:0 /usr/local/apisix \ + && chgrp -R 0 /usr/local/apisix \ Review Comment: the line above this already changes the group to 0, so you can remove this now (from all three Dockerfiles) -- 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]
