-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refined Containerfile - reduced image by 50%
- Loading branch information
Mick Pollard
committed
Oct 13, 2023
1 parent
2039d2a
commit 26f9b31
Showing
1 changed file
with
9 additions
and
26 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -7,33 +7,16 @@ LABEL com.github.containers.toolbox="true" \ | |
summary="Base image for creating Ubuntu toolbox containers" \ | ||
maintainer="Mick Pollard <[email protected]>" | ||
|
||
# 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 | ||
|
||
# Enable myhostname nss plugin for clean hostname resolution without patching | ||
# hosts (at least for sudo), add it right after 'files' entry. We expect that | ||
# this entry is not present yet. Do this early so that package postinst (which | ||
# adds it too late in the order) skips this step | ||
RUN sed -Ei 's/^(hosts:.*)(\<files\>)\s*(.*)/\1\2 myhostname \3/' /etc/nsswitch.conf | ||
|
||
# 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 sed -Ei '/apt-get (update|upgrade)/s/^/#/' /usr/local/sbin/unminimize && \ | ||
apt-get update && \ | ||
yes | /usr/local/sbin/unminimize && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get -y install \ | ||
ubuntu-minimal ubuntu-standard \ | ||
libnss-myhostname \ | ||
$(cat extra-packages | xargs) && \ | ||
rm -rd /var/lib/apt/lists/* | ||
RUN rm /extra-packages | ||
|
||
# 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/ | ||
RUN sed -Ei '/apt-get (update|upgrade)/s/^/#/' /usr/local/sbin/unminimize \ | ||
&& apt-get update -yq \ | ||
&& apt-get -yq dist-upgrade \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get -yq install \ | ||
libnss-myhostname \ | ||
$(cat extra-packages | xargs) \ | ||
&& yes | /usr/local/sbin/unminimize && echo '' \ | ||
&& apt-get clean | ||
RUN rm /extra-packages | ||
|