From 6be92d42b8239bbeb69882a4992138c075a47b00 Mon Sep 17 00:00:00 2001 From: jialv01 Date: Thu, 28 Mar 2019 16:52:48 +0800 Subject: [PATCH] Modify the URL to properly download kafka bin Signed-off-by: jialv01 --- kafka/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kafka/Dockerfile b/kafka/Dockerfile index 4d43b54..19782bb 100644 --- a/kafka/Dockerfile +++ b/kafka/Dockerfile @@ -5,7 +5,7 @@ ENV kafka_bin_version=2.12-$kafka_version RUN apk add --no-cache --update-cache --virtual build-dependencies curl ca-certificates \ && mkdir -p /opt/kafka \ - && curl -SLs "https://www-eu.apache.org/dist/kafka/$kafka_version/kafka_$kafka_bin_version.tgz" | tar -xzf - --strip-components=1 -C /opt/kafka \ + && curl -SLs "https://archive.apache.org/dist/kafka/$kafka_version/kafka_$kafka_bin_version.tgz" |tar -xzf - --strip-components=1 -C /opt/kafka \ && apk del build-dependencies \ && rm -rf /var/cache/apk/* -- 2.17.1