Bookworm -> Bullseye, except for the runtime

This commit is contained in:
Luke Parker
2025-08-10 11:34:09 -04:00
parent 9f1c5268a5
commit 75c38560f4
2 changed files with 3 additions and 3 deletions

View File

@@ -117,7 +117,7 @@ WORKDIR /home/{user}
Os::Debian => format!(
r#"
FROM debian:bookworm-slim AS image
FROM debian:bullseye-slim AS image
COPY --from=mimalloc-debian libmimalloc.so /usr/lib
RUN echo "/usr/lib/libmimalloc.so" >> /etc/ld.so.preload
@@ -146,7 +146,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.89-slim-bullseye AS builder
COPY --from=mimalloc-debian libmimalloc.so /usr/lib
RUN echo "/usr/lib/libmimalloc.so" >> /etc/ld.so.preload