Skip to content

Commit 3731532

Browse files
committed
build: add protobuf compiler to dockerfile
Signed-off-by: Gustavo Inacio <[email protected]>
1 parent 204e819 commit 3731532

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Dockerfile.tap_aggregator

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
FROM rust:1.83-bookworm as build
22

33
WORKDIR /root
4+
5+
RUN apt-get update && apt-get install -y --no-install-recommends \
6+
protobuf-compiler \
7+
&& rm -rf /var/lib/apt/lists/*
8+
49
COPY . .
510

611
RUN cargo build --release --bin tap_aggregator

0 commit comments

Comments
 (0)