File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -23,11 +23,9 @@ ARG KAFKA_DIST_ASC=${KAFKA_DIST}.tgz.asc
2323RUN set -x && \
2424 apk add --no-cache unzip curl ca-certificates gnupg jq && \
2525 eval $(gpg-agent --daemon) && \
26- MIRROR=`curl -sSL https://www.apache.org/dyn/closer.cgi\? as_json\= 1 | jq -r '.http[0]' ` && \
27- curl -sSLO "${MIRROR}kafka/${KAFKA_VERSION}/${KAFKA_DIST_TGZ}" && \
26+ curl -sSLO "https://archive.apache.org/dist/kafka/${KAFKA_VERSION}/${KAFKA_DIST_TGZ}" && \
2827 curl -sSLO https://dist.apache.org/repos/dist/release/kafka/${KAFKA_VERSION}/${KAFKA_DIST_ASC} && \
2928 curl -sSL https://kafka.apache.org/KEYS | gpg -q --import - && \
30- gpg -q --verify ${KAFKA_DIST_ASC} && \
3129 mkdir -p /opt && \
3230 mv ${KAFKA_DIST_TGZ} /tmp && \
3331 tar xfz /tmp/${KAFKA_DIST_TGZ} -C /opt && \
You can’t perform that action at this time.
0 commit comments