This is an automated email from the ASF dual-hosted git repository.
onichols pushed a commit to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/support/1.12 by this push:
new 1d45268 GEODE-10145: Java tools (such as javac) need to stay on the
PATH (#7482)
1d45268 is described below
commit 1d45268b05fa5ad6bcd70499c0125ce86562fc91
Author: Owen Nichols <[email protected]>
AuthorDate: Wed Mar 23 14:21:41 2022 -0700
GEODE-10145: Java tools (such as javac) need to stay on the PATH (#7482)
they were accidentally removed by prior PR#7466 for GEODE-10145
(cherry picked from commit 817860c649844484c39831873bb2e71ca978c08b)
---
ci/images/alpine-tools/Dockerfile | 1 +
1 file changed, 1 insertion(+)
diff --git a/ci/images/alpine-tools/Dockerfile
b/ci/images/alpine-tools/Dockerfile
index f37181f..e36cad5 100644
--- a/ci/images/alpine-tools/Dockerfile
+++ b/ci/images/alpine-tools/Dockerfile
@@ -56,3 +56,4 @@ RUN apk --no-cache add \
&& pip3 install awscli
ENV JAVA_HOME /usr/lib/jvm/default-jvm
+ENV PATH="$PATH:$JAVA_HOME/bin"