fix(infra): bump cargo-chef image to rust 1.89 for compatibility

cargo-chef with rust 1.85 has compatibility issues with some dependency crates.

Co-Authored-By: Kilo <kilo@kilo.ai>
This commit is contained in:
asepharyana
2026-07-24 13:45:51 +07:00
co-authored by Kilo
parent bd751c0fca
commit 836ef6862e
+1 -1
View File
@@ -1,7 +1,7 @@
# ============================================================
# Stage 1: Build Rust Backend (with cargo-chef caching)
# ============================================================
FROM lukemathwalker/cargo-chef:latest-rust-1.85.0 AS chef
FROM lukemathwalker/cargo-chef:latest-rust-1.89.0 AS chef
WORKDIR /app
FROM chef AS planner