linghengqian opened a new issue, #32666: URL: https://github.com/apache/shardingsphere/issues/32666
## Feature Request **For English only**, other languages will not be accepted. Please pay attention on issues you submitted, because we maybe need more details. If no response anymore and we cannot make decision by current information, we will **close it**. Please answer these questions before submitting your issue. Thanks! ### Is your feature request related to a problem? - No. ### Describe the feature you would like. - Proxy Dockerfile uses the obsolete `MAINTAINER` tag and Legacy Key Value Format. Refer to https://docs.docker.com/reference/build-checks/maintainer-deprecated/ and https://docs.docker.com/reference/build-checks/legacy-key-value-format/ . - See - https://github.com/apache/shardingsphere/blob/master/distribution/proxy/Dockerfile - https://github.com/apache/shardingsphere/blob/master/distribution/proxy-native/Dockerfile - I think for the following tags, ```dockerfile MAINTAINER ShardingSphere "[email protected]" ``` - should be replaced with something like https://gitlab.com/gitlab-org/omnibus-gitlab/-/commit/94105c86fbb266a7e45f7b9c7eebac066ca2a7be , ```dockerfile LABEL org.opencontainers.image.authors="ShardingSphere [email protected]" ``` - For statements like the following, ```dockerfile ENV LOCAL_PATH /opt/shardingsphere-proxy ``` - Should be replaced by, ```dockerfile ENV LOCAL_PATH=/opt/shardingsphere-proxy ``` -- 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]
