Skip to content

Commit

Permalink
Pin cargo chef (#3014)
Browse files Browse the repository at this point in the history
* Pinned cargo-chef to 0.1.68

* Changelog
  • Loading branch information
Razz4780 authored Jan 13, 2025
1 parent 007597c commit 7c94541
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.d/+pinned-cargo-chef.internal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Pinned `cargo-chef` version to `0.1.68` in the dockerfiles.
3 changes: 2 additions & 1 deletion mirrord/agent/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ RUN ./platform.sh
# this takes around 1 minute since libgit2 is slow https://github.com/rust-lang/cargo/issues/9167
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true

RUN cargo install cargo-chef
# cargo-chef 0.1.69 breaks the build
RUN cargo install [email protected]

FROM chef AS planner

Expand Down
3 changes: 2 additions & 1 deletion mirrord/cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ RUN ./platform.sh
# this takes around 1 minute since libgit2 is slow https://github.com/rust-lang/cargo/issues/9167
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true

RUN cargo install cargo-chef
# cargo-chef 0.1.69 breaks the build
RUN cargo install [email protected]

FROM chef AS planner

Expand Down

0 comments on commit 7c94541

Please sign in to comment.