Run yum clean to reduce size of docker image layer

This ensures we do not write the yum cache in the layer, making the
image size smaller.

Change-Id: I974bcac75be9231cf282a73db1a22a6f4ba079fc
(cherry picked from commit 0c2305ad80)
This commit is contained in:
Martin André 2018-05-14 14:01:21 +02:00 committed by Alex Schultz
parent 7ace983c9b
commit b3b5d97247
1 changed files with 1 additions and 1 deletions

View File

@ -453,5 +453,5 @@ STOPSIGNAL SIGTERM
# a yum update in the kolla base image. All the other images should inherit this
# but if the base distro container is out of date (i.g. 7.4 but 7.5 is out) this
# will pull in the updated packages available. Related issue LP#1770355
RUN yum update -y
RUN yum update -y && yum clean all
{% endblock %}