What instruction exists in every Containerfile/Dockefile and what does it do?
Answer
In every Containerfile/Dockerfile, you can find the instruction FROM which is also the first instruction (at least most of the time. You can put ARG before).
It specifies the base layer of the image to be used. Every other instruction is a layer on top of that base image.