chore(deps): update registry.access.redhat.com/ubi9/python-312 docker tag to v9.8-1779945122#570
Conversation
|
Note Reviews pausedIt looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the Use the following commands to manage reviews:
Use the checkboxes below for quick actions:
WalkthroughThe Dockerfile's ChangesBase Image Tag Update
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
43ba348 to
1ad0c48
Compare
1ad0c48 to
d133173
Compare
d133173 to
5d2dc51
Compare
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@Dockerfile`:
- Line 1: The Dockerfile's builder image uses
registry.access.redhat.com/ubi9/python-312:9.8-1779376496 (declared as the
builder), but the runtime stage still uses the 9.7 minor version; update the
runtime stage's FROM to the same 9.8 tag so both stages use the identical base
image (match the exact tag used in the builder FROM), ensuring consistency
between the builder and final runtime images.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
| @@ -1,4 +1,4 @@ | |||
| FROM registry.access.redhat.com/ubi9/python-312:9.7-1778488949 as builder | |||
| FROM registry.access.redhat.com/ubi9/python-312:9.8-1779376496 as builder | |||
There was a problem hiding this comment.
Version mismatch between builder and runtime stages.
The builder stage uses UBI9 version 9.8 while the runtime stage remains on version 9.7. This version inconsistency between the build and runtime environments could lead to compatibility issues if 9.8 introduces library updates, ABI changes, or system-level modifications that affect the compiled Python wheel.
Consider updating the runtime base image on line 14 to match the builder's minor version:
-FROM registry.access.redhat.com/ubi9-minimal:9.7-1778562320
+FROM registry.access.redhat.com/ubi9-minimal:9.8-<latest-build-tag>Also applies to: 14-14
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@Dockerfile` at line 1, The Dockerfile's builder image uses
registry.access.redhat.com/ubi9/python-312:9.8-1779376496 (declared as the
builder), but the runtime stage still uses the 9.7 minor version; update the
runtime stage's FROM to the same 9.8 tag so both stages use the identical base
image (match the exact tag used in the builder FROM), ensuring consistency
between the builder and final runtime images.
e36b17f to
a4d91be
Compare
a4d91be to
e8be868
Compare
e8be868 to
ca4e59e
Compare
28abf3d to
718dbef
Compare
… tag to v9.8-1779945122 Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
718dbef to
ba83b16
Compare
This PR contains the following updates:
9.7-1778488949→9.8-1779945122Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
To execute skipped test pipelines write comment
/ok-to-test.Documentation
Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.