Skip to content

Commit 72648ba

Browse files
authored
fix(docker): add libsasl2-2 to images (#720)
1 parent 0e85079 commit 72648ba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile.indexer-service-rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN cargo build --release --bin indexer-service-rs
1616
FROM debian:bookworm-slim
1717

1818
RUN apt-get update && apt-get install -y --no-install-recommends \
19-
openssl ca-certificates protobuf-compiler \
19+
openssl ca-certificates protobuf-compiler libsasl2-2 \
2020
&& rm -rf /var/lib/apt/lists/*
2121
COPY --from=build /root/target/release/indexer-service-rs /usr/local/bin/indexer-service-rs
2222

Dockerfile.indexer-tap-agent

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN cargo build --release --bin indexer-tap-agent
1515
FROM debian:bookworm-slim
1616

1717
RUN apt-get update && apt-get install -y --no-install-recommends \
18-
openssl ca-certificates protobuf-compiler \
18+
openssl ca-certificates protobuf-compiler libsasl2-2 \
1919
&& rm -rf /var/lib/apt/lists/*
2020
COPY --from=build /root/target/release/indexer-tap-agent /usr/local/bin/indexer-tap-agent
2121

0 commit comments

Comments
 (0)