We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1628459 commit c3eaea8Copy full SHA for c3eaea8
docker/Dockerfile
@@ -4,6 +4,7 @@ FROM ghcr.io/rust-cross/rust-musl-cross:aarch64-musl AS musl_aarch64
4
FROM rust:1.91.0-slim-trixie AS build-base
5
6
# Prepopulate cargo index and install dependencies
7
+# libcurl4-openssl-dev and libsasl2-dev are require for building with the Kafka OIDC feature enabled.
8
RUN cargo search --limit=1 && \
9
apt update && apt upgrade -y && \
10
apt -y install --no-install-recommends \
@@ -12,6 +13,7 @@ RUN cargo search --limit=1 && \
12
13
protobuf-compiler \
14
libprotoc-dev \
15
libcurl4-openssl-dev \
16
+ libsasl2-dev \
17
clang \
18
cmake \
19
llvm \
0 commit comments