Skip to content

Commit 2093308

Browse files
committed
Dockerfile: add missing build/runtime dependencies
Add cmake and libclang-dev to the builder stage and libgomp1 to the runtime stage to fix Docker build failures. Signed-off-by: Dan Prince <dprince@redhat.com>
1 parent 85c7f97 commit 2093308

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ FROM rust:1.82-bookworm AS builder
99
RUN apt-get update && \
1010
apt-get install -y --no-install-recommends \
1111
build-essential \
12+
cmake \
1213
pkg-config \
1314
libssl-dev \
1415
libdbus-1-dev \
16+
libclang-dev \
1517
protobuf-compiler \
1618
libprotobuf-dev \
1719
ca-certificates \
@@ -40,6 +42,7 @@ RUN apt-get update && \
4042
ca-certificates \
4143
libssl3 \
4244
libdbus-1-3 \
45+
libgomp1 \
4346
libxcb1 \
4447
curl \
4548
git \

0 commit comments

Comments
 (0)