feat: upgrade base image to Ubuntu 26.04 LTS - #48
Merged
Conversation
Ships newer, less-CVE-laden package versions and extends standard security support to 2031 (24.04 ends April 2029). Verified before the bump: the ubuntu uid-1000 user still exists (userdel path unchanged), Python is 3.14 (PEP 668 --break-system-packages still applies), and openssh-server/vim-tiny are available. Closes #34.
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.
Closes #34
What
FROM ubuntu:24.04→FROM ubuntu:26.04plus the matching comment/README updates.Pre-verified (per the issue's checklist)
userdel ubuntu— 26.04 still ships theubuntuuser at uid 1000, so the existing removal step is unchanged and required.--break-system-packagesstays.ansibleavailability — no longer relevant: since feat: slim image with pip ansible-core and native arm64 builds #44 the image installsansible-corefrom pip, which sidesteps the distro packaging question entirely.openssh-server(10.2),vim-tiny,python3-pipall present in 26.04.CVE expectation
24.04's base layers carried the bulk of the remaining MEDIUM/LOW findings; the scheduled Trivy scan after this publishes should show the drop. CI on this PR builds both platforms and smoke-tests sshd + ansible on the new base.
Summary by cubic
Upgraded the Docker base image to Ubuntu 26.04 LTS to reduce CVEs and extend support through 2031. Updated README and comments; build and runtime behavior remain the same.
ubuntu:24.04→ubuntu:26.04userdel ubuntuand pip--break-system-packages(Python 3.14 / PEP 668)openssh-server,vim-tiny, andpython3-pipremain availableWritten for commit 5905733. Summary will update on new commits.