This is an automated email from the ASF dual-hosted git repository.
dsmiley pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/main by this push:
new 3759c3e8c36 SOLR-17458: Fix Dockerfile.body.template PATH
3759c3e8c36 is described below
commit 3759c3e8c36a5cd770decb312fb95df529203366
Author: David Smiley <[email protected]>
AuthorDate: Tue Oct 14 15:48:03 2025 -0400
SOLR-17458: Fix Dockerfile.body.template PATH
PATH requires /opt/solr/bin and /opt/solr/docker/scripts
---
solr/docker/templates/Dockerfile.body.template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/solr/docker/templates/Dockerfile.body.template
b/solr/docker/templates/Dockerfile.body.template
index 6a88683cf83..45a7eb91f77 100644
--- a/solr/docker/templates/Dockerfile.body.template
+++ b/solr/docker/templates/Dockerfile.body.template
@@ -39,7 +39,7 @@ ENV SOLR_USER="solr" \
SOLR_UID="8983" \
SOLR_GROUP="solr" \
SOLR_GID="8983" \
- PATH="/opt/solr/cross-dc-manager/bin:$PATH" \
+
PATH="/opt/solr/bin:/opt/solr/docker/scripts:/opt/solr/cross-dc-manager/bin:$PATH"
\
SOLR_INCLUDE=/etc/default/solr.in.sh \
SOLR_HOME=/var/solr/data \
SOLR_PID_DIR=/var/solr \