This is an automated email from the ASF dual-hosted git repository.

lresende pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-toree.git

commit 916a0bab79e786e18b18cde6625c33ea45d2af33
Author: Luciano Resende <lrese...@apache.org>
AuthorDate: Tue Jun 18 05:49:26 2019 -0700

    [TOREE-502] Install Apache Spark from dist archive
---
 Dockerfile.system-test | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/Dockerfile.system-test b/Dockerfile.system-test
index 9dad03d..e8e1cff 100644
--- a/Dockerfile.system-test
+++ b/Dockerfile.system-test
@@ -34,10 +34,9 @@ RUN apt-get -y update && \
 
 # Installing Spark2
 RUN cd /tmp && \
-        wget -q 
http://d3kbcqa49mib13.cloudfront.net/spark-${APACHE_SPARK_VERSION}-bin-hadoop2.6.tgz
 && \
-        echo "e17d9da4b3ac463ea3ce42289f2a71cefb479d154b1ffd00310c7d7ab207aa2c 
*spark-${APACHE_SPARK_VERSION}-bin-hadoop2.6.tgz" | sha256sum -c - && \
-        tar xzf spark-${APACHE_SPARK_VERSION}-bin-hadoop2.6.tgz -C /usr/local 
&& \
-        rm spark-${APACHE_SPARK_VERSION}-bin-hadoop2.6.tgz
+    wget -q 
https://archive.apache.org/dist/spark/spark-${APACHE_SPARK_VERSION}/spark-${APACHE_SPARK_VERSION}-bin-hadoop2.6.tgz
 && \
+    tar xzf spark-${APACHE_SPARK_VERSION}-bin-hadoop2.6.tgz -C /usr/local && \
+    rm spark-${APACHE_SPARK_VERSION}-bin-hadoop2.6.tgz
 
 # Overwrite symlink
 RUN cd /usr/local && \

Reply via email to