build: use Minimus Rust builder - #128
Merged
Merged
Conversation
Replace the public rust:latest builder with reg.mini.dev/rust:latest and run the build stage as root for package installation. Validated: - docker build --progress=plain --target runtime -t cachey:minimus-rust-test . - docker run --rm cachey:minimus-rust-test --help - cargo +nightly fmt -- --check - cargo nextest run --all-features (124 passed) - cargo clippy --all-features --all-targets -- -D warnings --allow deprecated (current-main Rust 1.97 reports 15 useless-borrows-in-formatting warnings in unchanged tests; all other lints pass when that lint is allowed) - cargo deny check with cargo-deny 0.19.7 - cargo metadata --locked --format-version 1
Greptile SummaryReplaces the public Rust builder image with the Minimus Rust image and explicitly selects the root user for the build stage. Confidence Score: 5/5The PR appears safe to merge with no concrete changed-code failures identified. The builder-stage user does not propagate into the independently declared runtime stages, and the supplied validation confirms that the new builder produces an executable runtime image. Important Files Changed
Reviews (1): Last reviewed commit: "build: use Minimus Rust builder" | Re-trigger Greptile |
shikhar
approved these changes
Jul 29, 2026
Merged
shikhar
pushed a commit
that referenced
this pull request
Jul 29, 2026
## 🤖 New release * `cachey`: 0.10.13 -> 0.10.14 <details><summary><i><b>Changelog</b></i></summary><p> <blockquote> ## [0.10.14](0.10.13...0.10.14) - 2026-07-29 ### Fixed - clippy useless_borrows_in_formatting warnings ([#129](#129)) ### Other - use Minimus Rust builder ([#128](#128)) </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/release-plz/release-plz/). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replace the public rust:latest builder with reg.mini.dev/rust:latest and run the build stage as root for package installation.
Validated: