So, each RUN in Dockerfile/Cintainerfile creates a new layer, which means in order to have a single layer container you need to concatenate all of your commands with ugly && / instead of having them nicely line by line with one RUN each.
Or am I missing something?