From b96c520f9dc93dc5919569d7995d9fefaf137c16 Mon Sep 17 00:00:00 2001 From: "AB from home.homenet" Date: Mon, 27 Oct 2025 09:46:39 +0200 Subject: [PATCH] Drop bad ci --- Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3ce6017..f747671 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,10 @@ -# Use cargo-chef for dependency caching -FROM lukemathwalker/cargo-chef:0.1.68-rust-1.90-slim AS chef +# Use standard Rust image and install cargo-chef +FROM rust:1.82-bookworm AS chef WORKDIR /app +# Install cargo-chef +RUN cargo install cargo-chef --version 0.1.67 + # Install system dependencies needed for building RUN apt-get update && apt-get install -y \ pkg-config \