Skip to content

Commit 54e0d3f

Browse files
committed
fix: install libsasl2-dev dependency in containers
1 parent c4f7363 commit 54e0d3f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

contrib/base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM debian:bookworm-slim
22

33
RUN apt-get update && apt-get install -y --no-install-recommends \
44
openssl ca-certificates protobuf-compiler postgresql-client curl \
5-
jq git linux-perf \
5+
jq git linux-perf libsasl2-dev\
66
strace valgrind procps \
77
bpftrace linux-headers-generic \
88
&& rm -rf /var/lib/apt/lists/*

contrib/indexer-service/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ COPY ../../ .
77
#
88
ENV SQLX_OFFLINE=true
99
RUN apt-get update && apt-get install -y --no-install-recommends \
10-
protobuf-compiler && rm -rf /var/lib/apt/lists/*
10+
protobuf-compiler libsasl2-dev && rm -rf /var/lib/apt/lists/*
1111
RUN cargo build --release --bin indexer-service-rs
1212

1313
########################################################################################

contrib/tap-agent/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ COPY . .
77
# the prepared files in the `.sqlx` directory.
88
ENV SQLX_OFFLINE=true
99
RUN apt-get update && apt-get install -y --no-install-recommends \
10-
protobuf-compiler && rm -rf /var/lib/apt/lists/*
10+
protobuf-compiler libsasl2-dev && rm -rf /var/lib/apt/lists/*
1111
RUN cargo build --release --bin indexer-tap-agent
1212

1313
########################################################################################

0 commit comments

Comments
 (0)