This is an automated email from the ASF dual-hosted git repository.
ashishvijaywargiya pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/trunk by this push:
new 5576cc4006 Fix Docker image build: copy test-reports.gradle in the
builder stage (#1599)
5576cc4006 is described below
commit 5576cc40062b6bde358dcf7f7cc9c01f8daf0677
Author: Ashish Vijaywargiya <[email protected]>
AuthorDate: Fri Aug 7 22:15:16 2026 +0530
Fix Docker image build: copy test-reports.gradle in the builder stage
(#1599)
build.gradle applies test-reports.gradle since #1584, but the
Dockerfile's explicit file COPY list wasn't updated to include it, so
the file is missing in the build context and the image build fails
during Gradle configuration.
---
Dockerfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Dockerfile b/Dockerfile
index a09ae4773e..8cf43733b8 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -47,7 +47,7 @@ COPY lib/ lib/
# We use a regex to match the plugins directory to avoid a build error when
the directory doesn't exist.
COPY plugin[s]/ plugins/
COPY themes/ themes/
-COPY APACHE2_HEADER build.gradle common.gradle gradle.properties NOTICE
settings.gradle dependencies.gradle .
+COPY APACHE2_HEADER build.gradle common.gradle gradle.properties NOTICE
settings.gradle dependencies.gradle test-reports.gradle .
# Build OFBiz while mounting a gradle cache
RUN --mount=type=cache,id=gradle-cache,sharing=locked,target=/root/.gradle \