When authoring the Dockerfile for a new public-records API, what does the FROM instruction establish?
Select an answer to reveal the explanation.
Short Explanation
FROM picks the foundation slab under the whole building. Everything you add later sits on that base—so a neglected or bloated base becomes everyone’s problem.
Full Explanation
FROM names the starting image (language runtime, distroless, or scratch) that later instructions build upon. Base choice drives size, attack surface, and how quickly CVEs land in every downstream image. It is not a popularity contest among Linux distros; it is a deliberate foundation decision.