-
Notifications
You must be signed in to change notification settings - Fork 197
[WIP] [test for ai] Swapped the fedora base of the 1.24 container from fedora 38 to the latest version of the container #367
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
PavolSloboda
wants to merge
1
commit into
sclorg:master
Choose a base branch
from
PavolSloboda:coderabbit_dockerfile_test
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| FROM quay.io/fedora/s2i-core:38 | ||
| FROM quay.io/fedora/s2i-core:latest | ||
|
|
||
| # nginx 1.24 image. | ||
| # | ||
|
|
||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: sclorg/nginx-container
Length of output: 1576
🌐 Web query:
Fedora s2i-core available versions 2026💡 Result:
In Fedora, the S2I CLI is packaged as
source-to-image(there isn’t a Fedora RPM nameds2i-core; “s2i-core” is commonly used for container base images). On Fedora in 2026 (as shown in current Fedora package repos), the availablesource-to-imageversions are: (packages.fedoraproject.org)1.5.1-3.fc441.5.1-3.fc441.5.1-1.fc431.5.1-1.fc42If you meant the
s2i-corecontainer image, Fedora’s “Apps/Stacks” community images (including base images like s2i-core) are published under thequay.io/fedoraorg (moved there from the older locations). (fedoramagazine.org)Citations:
Avoid using the
:latesttag—pin to a specific Fedora version.Using
:latestbreaks build reproducibility: successive builds may pull different Fedora versions, leading to inconsistent behavior and harder debugging. Additionally, this is the only Dockerfile in the repository using:latest; all others pin to specific versions (1.20 and 1.22 use:37, 1.26 uses:40). For consistency and reliability, pin to a specific version like:40or:42.Proposed fix
📝 Committable suggestion
🤖 Prompt for AI Agents