From f0237d9df80aa73a0b43ad663142f0f9bd3c35c8 Mon Sep 17 00:00:00 2001 From: Adam Shannon Date: Thu, 5 Sep 2024 17:03:12 -0500 Subject: [PATCH] build: download kafka 3.4.1 from archive.apache.org --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dcf0c99..9e7ebe2 100644 --- a/Dockerfile +++ b/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.1/kafka_2.12-3.4.1.tgz" -o kafka.tgz +RUN curl -L "https://archive.apache.org/dist/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