@@ -47,8 +47,8 @@ be UPPERCASE to distinguish them from arguments more easily.
4747Docker runs instructions in a Dockerfile in order. A Dockerfile ** must
4848begin with a ` FROM ` instruction** . This may be after [ parser
4949directives] ( #parser-directives ) , [ comments] ( #format ) , and globally scoped
50- [ ARGs] ( #arg ) . The ` FROM ` instruction specifies the [ parent
51- image] ( https://docs.docker.com/glossary/#parent -image ) from which you are
50+ [ ARGs] ( #arg ) . The ` FROM ` instruction specifies the [ base
51+ image] ( https://docs.docker.com/glossary/#base -image ) from which you are
5252building. ` FROM ` may only be preceded by one or more ` ARG ` instructions, which
5353declare arguments that are used in ` FROM ` lines in the Dockerfile.
5454
@@ -1052,9 +1052,9 @@ LABEL multi.label1="value1" \
10521052> using string interpolation (e.g. ` LABEL example="foo-$ENV_VAR" ` ), single
10531053> quotes will take the string as is without unpacking the variable's value.
10541054
1055- Labels included in base or parent images (images in the ` FROM ` line) are
1056- inherited by your image. If a label already exists but with a different value,
1057- the most-recently-applied value overrides any previously-set value.
1055+ Labels included in base images (images in the ` FROM ` line) are inherited by
1056+ your image. If a label already exists but with a different value, the
1057+ most-recently-applied value overrides any previously-set value.
10581058
10591059To view an image's labels, use the ` docker image inspect ` command. You can use
10601060the ` --format ` option to show just the labels;
0 commit comments