Currently, Dockerfiles contain multiple layers of single ``` RUN apt-get install pkg1 RUN apt-get install pkg2 ``` instructions for each package that gets installed. Using a single layer is probably beneficial (faster): ``` RUN apt-get install pkg1 pkg2 pkg3 ```