-
Notifications
You must be signed in to change notification settings - Fork 424
DL3032
Moritz Röhrich edited this page Oct 6, 2020
·
1 revision
RUN yum install -y httpd-2.24.2
RUN yum install -y httpd-2.24.2 && yum clean all
Clean cached package data after installation to reduce image size.
https://docs.docker.com/engine/articles/dockerfile_best-practices/
Clean up must be performed in the same RUN step, otherwise it will not affect image size.