When writing a Containerfile, which instruction specifies the base image to be used for the subsequent build steps?
Trap 1: BASE
BASE is not a valid instruction.
Trap 2: INIT
INIT is not a valid instruction.
Trap 3: PARENT
PARENT is not a valid instruction.
- A
BASE
Why wrong: BASE is not a valid instruction.
- B
INIT
Why wrong: INIT is not a valid instruction.
- C
FROM
FROM initializes a new build stage and sets the Base Image.
- D
PARENT
Why wrong: PARENT is not a valid instruction.