alpine based image with kafka binary inside
212
An alpine based image with kafka binary downloaded from here.
Dockerfile :
FROM alpine:3.16
RUN apk update
RUN apk add --no-cache openjdk11 curl bash
RUN mkdir /opt/kafka
RUN curl https://downloads.apache.org/kafka/3.2.1/kafka_2.12-3.2.1.tgz -o /tmp/kafka.tgz -s
RUN tar -xvf /tmp/kafka.tgz -C /opt/kafka
RUN rm /tmp/kafka.tgz
Content type
Image
Digest
sha256:3f9f1e645…
Size
341.9 MB
Last updated
about 4 years ago
docker pull robeevanjava/alpine-kafka-tools