validation: fix cargo chef

This commit is contained in:
Quaternions 2024-12-12 12:51:44 -08:00
parent dee563e12a
commit 4c5d9e420d

View File

@ -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 . .