Skip to content

Commit 82abb7d

Browse files
committed
fix(dockerfile.tap): install libsasl2-dev
1 parent a6d6890 commit 82abb7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile.indexer-tap-agent

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ 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
########################################################################################
1414

1515
FROM debian:bookworm-slim
1616

1717
RUN apt-get update && apt-get install -y --no-install-recommends \
18-
openssl ca-certificates \
18+
openssl ca-certificates protobuf-compiler \
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)