Clear improper --no-cache flag and make minor change to attempt to get github to clear the bugged cache for that file

This commit is contained in:
Christbru 2025-10-18 23:32:35 -05:00
commit 721296c7f1
2 changed files with 2 additions and 1 deletions

View file

@ -58,7 +58,7 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry,sharing=locked \
RUN rm -f src/main.rs RUN rm -f src/main.rs
COPY src ./src COPY src ./src
# Build the real binary # Build the real binary
RUN cargo build --release --locked --no-cache RUN cargo build --release --locked
# --- Stage 2: Final, small image --- # --- Stage 2: Final, small image ---

View file

@ -123,6 +123,7 @@ async fn start_server_without_db() -> Result<(), Box<dyn std::error::Error>> {
.with(warp::log("rust_engine")); .with(warp::log("rust_engine"));
info!("Rust Engine started on http://0.0.0.0:8000 (DB-less mode)"); info!("Rust Engine started on http://0.0.0.0:8000 (DB-less mode)");
info!("Rust Engine prepared!");
warp::serve(routes) warp::serve(routes)
.run(([0, 0, 0, 0], 8000)) .run(([0, 0, 0, 0], 8000))