An administrator needs to execute multiple commands in a single RUN instruction to minimize image layers. Which syntax is standard in a Containerfile?
Using && ensures commands run sequentially in the same layer.
Why this answer
Combining commands using shell operators like && within a single RUN instruction reduces the total number of layers.