Skip to content
Snippets Groups Projects

Specify cargo-chef version to be compatible with rust 1.71

Merged Anthony GRAIGNIC requested to merge fix-ci-build into dev
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
FROM registry.gitlab.limos.fr/ecomobicoin/infra/rust-builder-image:1.71 as chef
WORKDIR /app
RUN cargo install cargo-chef
RUN cargo install cargo-chef --version 0.1.53
FROM chef as planner
COPY . .
Loading