-
Notifications
You must be signed in to change notification settings - Fork 424
DL3040
Moritz Röhrich edited this page Nov 6, 2020
·
1 revision
RUN dnf install -y httpd-2.24.2
RUN dnf install -y httpd-2.24.2 && dnf 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.