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