File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# ---- Base builder image with rust ----
2- FROM --platform=$BUILDPLATFORM rust:latest AS rust-builder
2+ FROM --platform=$BUILDPLATFORM rust:1-trixie AS rust-builder
33
44# install required dependencies to build z3.rs...
55RUN apt-get update && apt-get install -y cmake llvm-dev libclang-dev clang lld
@@ -46,7 +46,9 @@ RUN cargo build --verbose --release --target ${CAESAR_ARCH}
4646RUN cp target/${CAESAR_ARCH}/release/caesar target/release/caesar
4747
4848# ---- Building the final Docker image ----
49- FROM gcr.io/distroless/cc-debian12:latest
49+ # Keep the runtime Debian release aligned with the builder to avoid
50+ # glibc/libstdc++ version mismatches in the published image.
51+ FROM gcr.io/distroless/cc-debian13:latest
5052
5153COPY --from=builder /root/caesar/target/release/caesar /caesar
5254
You can’t perform that action at this time.
0 commit comments