Skip to content

Commit ae927da

Browse files
committed
chore: add libsasl2 to Dockerfile
Signed-off-by: Theo Butler <[email protected]>
1 parent de27ec2 commit ae927da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile.tap_aggregator

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM rust:1.83-bookworm as build
33
WORKDIR /root
44

55
RUN apt-get update && apt-get install -y --no-install-recommends \
6-
protobuf-compiler \
6+
libsasl2-dev protobuf-compiler \
77
&& rm -rf /var/lib/apt/lists/*
88

99
COPY . .
@@ -15,7 +15,7 @@ RUN cargo build --release --bin tap_aggregator
1515
FROM debian:bookworm-slim
1616

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

0 commit comments

Comments
 (0)