-
Notifications
You must be signed in to change notification settings - Fork 228
images: add ubuntu/25.04 #1638
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
Merged
Merged
images: add ubuntu/25.04 #1638
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
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
FROM docker.io/library/ubuntu:25.04 | ||
|
||
LABEL com.github.containers.toolbox="true" \ | ||
name="ubuntu-toolbox" \ | ||
version="25.04" \ | ||
usage="This image is meant to be used with the toolbox command" \ | ||
summary="Base image for creating Ubuntu Toolbx containers" \ | ||
maintainer="Ievgen Popovych <jmennius@gmail.com>" | ||
|
||
# Remove apt configuration optimized for containers | ||
# Remove docker-gzip-indexes to help with "command-not-found" | ||
RUN rm /etc/apt/apt.conf.d/docker-gzip-indexes /etc/apt/apt.conf.d/docker-no-languages | ||
|
||
# Restore documentation but do not upgrade all packages | ||
# Install ubuntu-minimal & ubuntu-standard | ||
# Install extra packages as well as libnss-myhostname | ||
COPY extra-packages / | ||
RUN apt-get update && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get -y install unminimize && \ | ||
sed -Ei '/apt-get (update|upgrade)/s/^/#/' /usr/bin/unminimize && \ | ||
yes | /usr/bin/unminimize && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get -y install \ | ||
ubuntu-minimal ubuntu-standard \ | ||
libnss-myhostname \ | ||
flatpak-xdg-utils \ | ||
$(cat extra-packages | xargs) && \ | ||
rm -rd /var/lib/apt/lists/* | ||
RUN rm /extra-packages | ||
|
||
# Enable the use of p11-kit-client.so to access CA certificates from the host | ||
RUN mkdir --parents /etc/pkcs11/modules | ||
|
||
# Fix empty bind-mount to clear selinuxfs (see #337) | ||
RUN mkdir /usr/share/empty | ||
|
||
# Add flatpak-spawn to /usr/bin | ||
RUN ln -s /usr/libexec/flatpak-xdg-utils/flatpak-spawn /usr/bin/ | ||
|
||
# Having anything in /home prevents toolbox from symlinking /var/home there, | ||
# and 'ubuntu' user with UID 1000 will most likely conflict with host user as well | ||
RUN userdel --remove ubuntu | ||
|
||
# Disable APT ESM hook which tries to enable some systemd services on each apt invocation | ||
RUN rm /etc/apt/apt.conf.d/20apt-esm-hook.conf |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
curl | ||
git | ||
gnupg2 | ||
keyutils | ||
p11-kit-modules | ||
tree | ||
unzip | ||
zip | ||
zsh |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.