From 721296c7f18d4b7e41120d9acf702e23562a5f24 Mon Sep 17 00:00:00 2001 From: Christbru Date: Sat, 18 Oct 2025 23:32:35 -0500 Subject: [PATCH] Clear improper --no-cache flag and make minor change to attempt to get github to clear the bugged cache for that file --- rust-engine/Dockerfile | 2 +- rust-engine/src/main.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/rust-engine/Dockerfile b/rust-engine/Dockerfile index 6f4b321..c656f6f 100644 --- a/rust-engine/Dockerfile +++ b/rust-engine/Dockerfile @@ -58,7 +58,7 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry,sharing=locked \ RUN rm -f src/main.rs COPY src ./src # Build the real binary -RUN cargo build --release --locked --no-cache +RUN cargo build --release --locked # --- Stage 2: Final, small image --- diff --git a/rust-engine/src/main.rs b/rust-engine/src/main.rs index a72db16..dfcce04 100644 --- a/rust-engine/src/main.rs +++ b/rust-engine/src/main.rs @@ -123,6 +123,7 @@ async fn start_server_without_db() -> Result<(), Box> { .with(warp::log("rust_engine")); info!("Rust Engine started on http://0.0.0.0:8000 (DB-less mode)"); + info!("Rust Engine prepared!"); warp::serve(routes) .run(([0, 0, 0, 0], 8000))