diff --git a/docker/base/Dockerfile.j2 b/docker/base/Dockerfile.j2
index 1503d5039db96430d187b9530cfd41238b6df341..864ec2adbe4aeafd0273fe3b195ac267eb4ded62 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 0000000000000000000000000000000000000000..87b8255f9223edb4533a8a6e4ebe95800e859dd7
--- /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 0000000000000000000000000000000000000000..ab0939e7bfe32a696eca90ba25a2e8ad430edbbe
--- /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.