Fix issue with building docker image
Spark binaries in version 2.3.3 have been moved to archive. Updating the
url to point to archive server fixed the issue with build.
Change-Id: Id8d837f9b7d95d6cb1c4b27380110bd11ddaab53
diff --git a/project/SharedSettings.scala b/project/SharedSettings.scala
index 53dd76f..64f89b6 100644
--- a/project/SharedSettings.scala
+++ b/project/SharedSettings.scala
@@ -89,7 +89,7 @@
env("PATH","$PATH:$SPARK_HOME/bin")
env("SPARK_JAR_PATH", artifactTargetPath)
env("SPARK_JAR_CLASS",s"com.gerritforge.analytics.$projectName.job.Main")
- runRaw("curl -sL \"http://www-eu.apache.org/dist/spark/spark-$SPARK_VERSION/spark-$SPARK_VERSION-bin-hadoop2.7.tgz\" | tar -xz -C /usr/local")
+ runRaw("curl -sL \"http://archive.apache.org/dist/spark/spark-$SPARK_VERSION/spark-$SPARK_VERSION-bin-hadoop2.7.tgz\" | tar -xz -C /usr/local")
add(artifact, artifactTargetPath)
runRaw(s"chmod +x $artifactTargetPath")
}