This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a commit to branch HBASE-28693
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/HBASE-28693 by this push:
new ab88efb5d5a remove MAVEN_OPTS in dockerfile
ab88efb5d5a is described below
commit ab88efb5d5a2fd80c007eb3f2748a90181cec853
Author: Duo Zhang <[email protected]>
AuthorDate: Thu Jun 27 14:28:40 2024 +0800
remove MAVEN_OPTS in dockerfile
---
dev-support/docker/Dockerfile | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/dev-support/docker/Dockerfile b/dev-support/docker/Dockerfile
index 499397b6313..dcc2db45ed9 100644
--- a/dev-support/docker/Dockerfile
+++ b/dev-support/docker/Dockerfile
@@ -179,9 +179,8 @@ RUN mkdir -p /usr/lib/jvm && \
# these values to be specified here; the various --foo-path flags do not
# propigate as expected, while these are honored.
# TODO (nd): is this really true? investigate and file a ticket.
-ENV SPOTBUGS_HOME '/opt/spotbugs'
-ENV MAVEN_HOME '/opt/maven'
-ENV MAVEN_OPTS '-Xmx3.6G'
+ENV SPOTBUGS_HOME='/opt/spotbugs' \
+ MAVEN_HOME='/opt/maven'
CMD ["/bin/bash"]