Bump librdkafka to 1.6.0

Package confluent-kafka-python v1.6.0 requires librdkafka >= 1.6.0

Change-Id: Iea1d4fa42159984efff262d459292e5c6f941504
This commit is contained in:
Martin Chacon Piza 2021-02-09 16:44:57 +01:00
parent c491b34888
commit f59a2f296e

View File

@ -79,7 +79,7 @@ ONBUILD RUN \
libxslt-dev \
linux-headers \
make && \
# For librdkafka bigger than v1.4.0 we need newer versions of some
# For librdkafka bigger than v1.6.0 we need newer versions of some
# libraries.
apk add --no-cache --virtual .build-librdkafka \
libressl3.1-libcrypto \
@ -88,8 +88,8 @@ ONBUILD RUN \
--repository=http://dl-cdn.alpinelinux.org/alpine/edge/community && \
# Install librdkafka from source code.
apk add --no-cache curl bash && \
curl https://codeload.github.com/edenhill/librdkafka/tar.gz/v1.4.0 | tar xzf - -C /tmp/ && \
cd /tmp/librdkafka-1.4.0/ && \
curl https://codeload.github.com/edenhill/librdkafka/tar.gz/v1.6.0 | tar xzf - -C /tmp/ && \
cd /tmp/librdkafka-1.6.0/ && \
./configure && \
make && \
make install && \