Dockerfile: update runc binary to v1.2.6#49682
Merged
AkihiroSuda merged 1 commit intomoby:masterfrom Mar 21, 2025
Merged
Conversation
This is the sixth patch release in the 1.2.z series of runc. It primarily fixes an issue with runc exec vs time namespace, and a compatibility issue with older kernels. * Fix a stall issue that would happen if setting `O_CLOEXEC` with `CloseExecFrom` failed. * `runc` now properly handles joining time namespaces (such as with `runc exec`). Previously we would attempt to set the time offsets when joining, which would fail. * Handle `EINTR` retries correctly for socket-related direct `golang.org/x/sys/unix` system calls. * We no longer use `F_SEAL_FUTURE_WRITE` when sealing the runc binary, as it turns out this had some unfortunate bugs in older kernel versions and was never necessary in the first place. * Remove `Fexecve` helper from `libcontainer/system`. Runc 1.2.1 removed runc-dmz, but we forgot to remove this helper added only for that. * Use Go 1.23 for official builds, run CI with Go 1.24 and drop Ubuntu 20.04 from CI. We need to drop Ubuntu 20.04 from CI because Github Actions announced it's already deprecated and it will be discontinued soon. full diff: opencontainers/runc@v1.2.5...v1.2.6 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
AkihiroSuda
approved these changes
Mar 21, 2025
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.
This is the sixth patch release in the 1.2.z series of runc. It primarily fixes an issue with runc exec vs time namespace, and a compatibility issue with older kernels.
O_CLOEXECwithCloseExecFromfailed.runcnow properly handles joining time namespaces (such as withrunc exec). Previously we would attempt to set the time offsets when joining, which would fail.EINTRretries correctly for socket-related directgolang.org/x/sys/unixsystem calls.F_SEAL_FUTURE_WRITEwhen sealing the runc binary, as it turns out this had some unfortunate bugs in older kernel versions and was never necessary in the first place.Fexecvehelper fromlibcontainer/system. Runc 1.2.1 removed runc-dmz, but we forgot to remove this helper added only for that.full diff: opencontainers/runc@v1.2.5...v1.2.6
- What I did
- How I did it
- How to verify it
- Human readable description for the release notes
- A picture of a cute animal (not mandatory but encouraged)