From 8f65ddd3877ff28c0faf67609f36aae9f511e37f Mon Sep 17 00:00:00 2001 From: Atrbear Date: Mon, 30 Jul 2018 17:35:06 +0800 Subject: [PATCH] update hadoop remote url since the hadoop==2.7.5 was not in the mirror site, replace it with the archive path. --- apache/docker/sentry/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apache/docker/sentry/Dockerfile b/apache/docker/sentry/Dockerfile index 63c46dcf9..907408d88 100644 --- a/apache/docker/sentry/Dockerfile +++ b/apache/docker/sentry/Dockerfile @@ -9,7 +9,7 @@ ARG HADOOP_VERSION=2.7.5 WORKDIR /opt ADD http://repo1.maven.org/maven2/org/apache/sentry/sentry-dist/${SENTRY_VERSION}/sentry-dist-${SENTRY_VERSION}-bin.tar.gz /opt -ADD http://ftp.heanet.ie/mirrors/www.apache.org/dist/hadoop/common/hadoop-${HADOOP_VERSION}/hadoop-${HADOOP_VERSION}.tar.gz /opt +ADD ADD https://archive.apache.org/dist/hadoop/core/hadoop-${HADOOP_VERSION}/hadoop-${HADOOP_VERSION}.tar.gz /opt RUN tar zxvf sentry-dist-${SENTRY_VERSION}-bin.tar.gz \ && tar zxvf hadoop-${HADOOP_VERSION}.tar.gz \