diff --git a/orchestration/src/main.rs b/orchestration/src/main.rs index 534e3308..940374b7 100644 --- a/orchestration/src/main.rs +++ b/orchestration/src/main.rs @@ -118,7 +118,7 @@ WORKDIR /home/{user} Os::Debian => format!( r#" -FROM debian:bookworm-slim AS image +FROM debian:trixie-slim AS image COPY --from=mimalloc-debian libmimalloc.so /usr/lib RUN echo "/usr/lib/libmimalloc.so" >> /etc/ld.so.preload diff --git a/orchestration/src/mimalloc.rs b/orchestration/src/mimalloc.rs index 51f5bfe7..73b866e8 100644 --- a/orchestration/src/mimalloc.rs +++ b/orchestration/src/mimalloc.rs @@ -16,7 +16,7 @@ RUN git clone https://github.com/microsoft/mimalloc && \ "#; const DEBIAN_MIMALLOC: &str = r#" -FROM debian:bookworm-slim AS mimalloc-debian +FROM debian:trixie-slim AS mimalloc-debian RUN apt update && apt upgrade -y && apt install -y gcc g++ make cmake git RUN git clone https://github.com/microsoft/mimalloc && \