From de460e368a6317573027212a76f0598eb0a56fac Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Mon, 22 Sep 2025 00:58:33 -0400 Subject: [PATCH] Add `libclang-dev` as dependency to the Debian Dockerfile --- orchestration/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/orchestration/src/main.rs b/orchestration/src/main.rs index 09e046a3..3a7e6d27 100644 --- a/orchestration/src/main.rs +++ b/orchestration/src/main.rs @@ -147,7 +147,7 @@ fn build_serai_service(prelude: &str, release: bool, features: &str, package: &s format!( r#" -FROM rust:1.89-slim-bookworm AS builder +FROM rust:1.90-slim-trixie AS builder COPY --from=mimalloc-debian libmimalloc.so /usr/lib RUN echo "/usr/lib/libmimalloc.so" >> /etc/ld.so.preload @@ -155,7 +155,7 @@ RUN echo "/usr/lib/libmimalloc.so" >> /etc/ld.so.preload RUN apt update && apt upgrade -y && apt autoremove -y && apt clean # Add dev dependencies -RUN apt install -y pkg-config clang +RUN apt install -y pkg-config libclang-dev # Dependencies for the Serai node RUN apt install -y make protobuf-compiler