From 4c5d9e420db196688c77dc37a053a3290dbee4ef Mon Sep 17 00:00:00 2001 From: Quaternions Date: Thu, 12 Dec 2024 12:51:44 -0800 Subject: [PATCH] validation: fix cargo chef --- validation/Containerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/validation/Containerfile b/validation/Containerfile index a0639cc..1a2bbd9 100644 --- a/validation/Containerfile +++ b/validation/Containerfile @@ -11,6 +11,7 @@ RUN cargo chef prepare --recipe-path recipe.json FROM chef AS builder COPY --from=planner /app/recipe.json recipe.json +COPY api ./api # Notice that we are specifying the --target flag! RUN cargo chef cook --release --target x86_64-unknown-linux-musl --recipe-path recipe.json COPY . .