Skip to content

Commit

Permalink
build: add protobuf compiler to dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: Gustavo Inacio <[email protected]>
  • Loading branch information
gusinacio committed Dec 26, 2024
1 parent 005c765 commit 3ae8d27
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile.tap_aggregator
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
FROM rust:1.83-bookworm as build

WORKDIR /root

RUN apt-get update && apt-get install -y --no-install-recommends \
protobuf-compiler \
&& rm -rf /var/lib/apt/lists/*

COPY . .

RUN cargo build --release --bin tap_aggregator
Expand Down

0 comments on commit 3ae8d27

Please sign in to comment.