Skip to content

Commit

Permalink
fix: add zlib to Docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
Theodus committed Oct 21, 2024
1 parent 88ae09d commit 0cf7352
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ anyhow = "1.0.89"
chrono = { version = "0.4.38", default-features = false, features = ["alloc"] }
futures-util = "0.3.31"
prost = "0.13.3"
rdkafka = { version = "0.36.2", features = ["sasl", "tokio", "tracing"] }
rdkafka = { version = "0.36.2", features = [
"libz",
"sasl",
"tokio",
"tracing",
] }
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
snmalloc-rs = "0.3.6"
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ RUN apt-get update && apt-get install -y \
libsasl2-dev \
libssl-dev \
pkg-config \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
COPY . /src/
WORKDIR /src/
Expand Down

0 comments on commit 0cf7352

Please sign in to comment.