diff --git a/docker/base/Dockerfile.j2 b/docker/base/Dockerfile.j2 index 1503d5039d..864ec2adbe 100644 --- a/docker/base/Dockerfile.j2 +++ b/docker/base/Dockerfile.j2 @@ -190,6 +190,9 @@ RUN cat /tmp/kolla_bashrc >> /etc/bash.bashrc # This will prevent questions from being asked during the install ENV DEBIAN_FRONTEND noninteractive +# Reducing disk footprint +COPY dpkg_reducing_disk_footprint /etc/dpkg/dpkg.cfg.d/dpkg_reducing_disk_footprint + # Need apt-transport-https BEFORE we replace sources.list or apt-get update wont work! RUN apt-get update && apt-get -y install --no-install-recommends apt-transport-https ca-certificates diff --git a/docker/base/dpkg_reducing_disk_footprint b/docker/base/dpkg_reducing_disk_footprint new file mode 100644 index 0000000000..87b8255f92 --- /dev/null +++ b/docker/base/dpkg_reducing_disk_footprint @@ -0,0 +1,9 @@ +path-exclude /usr/share/doc/* +path-include /usr/share/doc/*/copyright +path-exclude /usr/share/man/* +path-exclude /usr/share/groff/* +path-exclude /usr/share/info/* +path-exclude /usr/share/lintian/* +path-exclude /usr/share/linda/* +path-exclude /usr/share/locale/* +path-include /usr/share/locale/en* diff --git a/releasenotes/notes/dpkg-reducing-disk-footprint-2a6b0056d57bd1de.yaml b/releasenotes/notes/dpkg-reducing-disk-footprint-2a6b0056d57bd1de.yaml new file mode 100644 index 0000000000..ab0939e7bf --- /dev/null +++ b/releasenotes/notes/dpkg-reducing-disk-footprint-2a6b0056d57bd1de.yaml @@ -0,0 +1,5 @@ +--- +other: + - Reducing disk footprint for Ubuntu/Debian images + by only installing English locales and no + documentation files.