Dockerfile RUN layers vs script
Docker version 19.03.12, build 48a66213fe So in a dockerfile, if I have the following lines: RUN yum install aaa bbb ccc && <some cmd> && <etc> && <some cleanup> is that a best practice? Should I keep yum part separate…