-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Description
From the documentation of Base image:
Definition of: base image
An image that has no parent is a base image.
From the documentation of Dockerfile:
Docker runs instructions in a Dockerfile in order. The first instruction must be FROM in order to specify the
Base Imagefrom which you are building.
Since the image that is specified via FROM can already be a derived image, it is probably better to say:
Docker runs instructions in a Dockerfile in order. The first instruction must be FROM in order to specify the
parent imagefrom which you are building.
Besides this, there are multiple other occurrences of the term "base image" that should be checked.
And also check the following broken link that is used in https://docs.docker.com/engine/reference/builder as link for "Base Image": https://docs.docker.com/engine/reference/glossary/#base-image