From 7f906e292bbdaea2c1fe5f66fcb78f7df6837119 Mon Sep 17 00:00:00 2001 From: Horacio Valencia Date: Sat, 4 Oct 2025 23:11:35 -0600 Subject: [PATCH] chore: upgrade Spark version from 3.5.2 to 3.5.7 Update the Spark version in the Dockerfile to use the latest patch version. --- utilities/Spark_UI/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/Spark_UI/Dockerfile b/utilities/Spark_UI/Dockerfile index 872fe58..6e3d2b5 100644 --- a/utilities/Spark_UI/Dockerfile +++ b/utilities/Spark_UI/Dockerfile @@ -5,7 +5,7 @@ RUN dnf --setopt=install_weak_deps=False install -y java-17-amazon-corretto mave WORKDIR /tmp/ ADD pom.xml /tmp -ARG SPARK_VERSION=3.5.2 +ARG SPARK_VERSION=3.5.7 RUN curl -o ./spark-${SPARK_VERSION}-bin-without-hadoop.tgz https://archive.apache.org/dist/spark/spark-${SPARK_VERSION}/spark-${SPARK_VERSION}-bin-without-hadoop.tgz RUN tar -xzf spark-${SPARK_VERSION}-bin-without-hadoop.tgz && \ mv spark-${SPARK_VERSION}-bin-without-hadoop /opt/spark && \