Created
October 18, 2020 11:00
-
-
Save javabrett/7a7f8531e2416b6faddf74d71dfb0b66 to your computer and use it in GitHub Desktop.
Build kafkacat on Centos 8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM centos:centos8.2.2004 | |
RUN yum update -y && \ | |
yum group install -y "Development Tools" && \ | |
yum install -y git cyrus-sasl-devel cmake libcurl-devel | |
RUN git clone https://github.com/edenhill/kafkacat.git && \ | |
cd kafkacat/ && \ | |
./bootstrap.sh && \ | |
./kafkacat -h |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment