Skip to content

Commit 6d801bf

Browse files
committed
[SPARK-53778] Use JDK25 Gradle Image as builder images
### What changes were proposed in this pull request? This PR aims to use JDK25 Gradle Image instead of JDK17. ### Why are the changes needed? Since SPARK-53701, Apache Spark K8s Operator has been using JDK25 Toolchain which means it downloads JDK 25 inside JDK 17 Docker image. By using JDK25 Gradle Image, we can eliminate this redundancy and save resources during Docker images. - #336 ### Does this PR introduce _any_ user-facing change? No behavior change. ### How was this patch tested? Pass the CIs. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #359 from dongjoon-hyun/SPARK-53778. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent 75f8a9c commit 6d801bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build-tools/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616
#
17-
FROM gradle:9.1.0-jdk17-noble AS builder
17+
FROM gradle:9.1.0-jdk25-noble AS builder
1818

1919
WORKDIR /app
2020

0 commit comments

Comments
 (0)