From a54535ed5a0247854660ace3a022db4891c6966d Mon Sep 17 00:00:00 2001 From: lamber-ken Date: Tue, 21 Jan 2020 20:41:59 +0800 Subject: [PATCH] [MINOR] Fix invalid maven repo address (#1265) --- docker/hoodie/hadoop/spark_base/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/hoodie/hadoop/spark_base/Dockerfile b/docker/hoodie/hadoop/spark_base/Dockerfile index 547459352..ae35e6e85 100644 --- a/docker/hoodie/hadoop/spark_base/Dockerfile +++ b/docker/hoodie/hadoop/spark_base/Dockerfile @@ -60,5 +60,5 @@ ENV SPARK_BLOCKMGR_PORT 5003 EXPOSE $SPARK_DRIVER_PORT $SPARK_UI_PORT $SPARK_BLOCKMGR_PORT # Without this spark-shell fails - Download if it is not already there in $SPARK_INSTALL -RUN wget -nc -q -O "${SPARK_INSTALL}/jars/jersey-bundle-1.19.4.jar" "http://repo1.maven.org/maven2/com/sun/jersey/jersey-bundle/1.19.4/jersey-bundle-1.19.4.jar" +RUN wget -nc -q -O "${SPARK_INSTALL}/jars/jersey-bundle-1.19.4.jar" "https://repo1.maven.org/maven2/com/sun/jersey/jersey-bundle/1.19.4/jersey-bundle-1.19.4.jar"