Skip to content

Commit cbfccab

Browse files
committed
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 <joel.hanson2@ibm.com> Signed-off-by: Joel Hanson <joelhanson025@gmail.com>
1 parent 41633c8 commit cbfccab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

kafka-connect/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM alpine as builder
55
RUN apk update
66
RUN apk --no-cache add curl
77

8-
RUN curl -L "https://downloads.apache.org/kafka/3.4.0/kafka_2.12-3.4.0.tgz" -o kafka.tgz
8+
RUN curl -L "https://downloads.apache.org/kafka/3.4.1/kafka_2.12-3.4.1.tgz" -o kafka.tgz
99
RUN mkdir /opt/kafka \
1010
&& tar -xf kafka.tgz -C /opt/kafka --strip-components=1
1111

kafka-mirrormaker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM alpine as builder
33
RUN apk update
44
RUN apk --no-cache add curl
55

6-
RUN curl -L "https://downloads.apache.org/kafka/3.4.0/kafka_2.12-3.4.0.tgz" -o kafka.tgz
6+
RUN curl -L "https://downloads.apache.org/kafka/3.4.1/kafka_2.12-3.4.1.tgz" -o kafka.tgz
77
RUN mkdir /opt/kafka \
88
&& tar -xf kafka.tgz -C /opt/kafka --strip-components=1
99

0 commit comments

Comments
 (0)