From 9da4d3656e9267f10ac8f370385068cf158a08de Mon Sep 17 00:00:00 2001 From: GroovieGermanikus Date: Mon, 12 Feb 2024 16:49:05 +0100 Subject: [PATCH] workaround for cargo-chef MSRV issue --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 088ba4f..367913d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax = docker/dockerfile:1.2 FROM rust:1.70.0 as base -RUN cargo install cargo-chef --locked +RUN cargo install cargo-chef@0.1.62 --locked RUN rustup component add rustfmt RUN apt-get update && apt-get install -y clang cmake ssh WORKDIR /app