Skip to content

Instantly share code, notes, and snippets.

@javabrett
Created October 18, 2020 11:00
Show Gist options
  • Save javabrett/7a7f8531e2416b6faddf74d71dfb0b66 to your computer and use it in GitHub Desktop.
Save javabrett/7a7f8531e2416b6faddf74d71dfb0b66 to your computer and use it in GitHub Desktop.
Build kafkacat on Centos 8
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