From cbfccab39f0fff3e25517f62f86b63fcd56bbfb1 Mon Sep 17 00:00:00 2001 From: Joel Hanson Date: Mon, 19 Jun 2023 13:54:59 +0530 Subject: [PATCH] fix: The kafka binary link is not working anymore. I have updated the link to the latest 3.4.1 version. Signed-off-by: Joel Hanson Signed-off-by: Joel Hanson --- kafka-connect/Dockerfile | 2 +- kafka-mirrormaker/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kafka-connect/Dockerfile b/kafka-connect/Dockerfile index 06cde97..fa80af4 100755 --- a/kafka-connect/Dockerfile +++ b/kafka-connect/Dockerfile @@ -5,7 +5,7 @@ FROM alpine as builder RUN apk update RUN apk --no-cache add curl -RUN curl -L "https://downloads.apache.org/kafka/3.4.0/kafka_2.12-3.4.0.tgz" -o kafka.tgz +RUN curl -L "https://downloads.apache.org/kafka/3.4.1/kafka_2.12-3.4.1.tgz" -o kafka.tgz RUN mkdir /opt/kafka \ && tar -xf kafka.tgz -C /opt/kafka --strip-components=1 diff --git a/kafka-mirrormaker/Dockerfile b/kafka-mirrormaker/Dockerfile index 37c59a9..49edab8 100755 --- a/kafka-mirrormaker/Dockerfile +++ b/kafka-mirrormaker/Dockerfile @@ -3,7 +3,7 @@ FROM alpine as builder RUN apk update RUN apk --no-cache add curl -RUN curl -L "https://downloads.apache.org/kafka/3.4.0/kafka_2.12-3.4.0.tgz" -o kafka.tgz +RUN curl -L "https://downloads.apache.org/kafka/3.4.1/kafka_2.12-3.4.1.tgz" -o kafka.tgz RUN mkdir /opt/kafka \ && tar -xf kafka.tgz -C /opt/kafka --strip-components=1