@@ -47,8 +47,8 @@ be UPPERCASE to distinguish them from arguments more easily.
47
47
Docker runs instructions in a Dockerfile in order. A Dockerfile ** must
48
48
begin with a ` FROM ` instruction** . This may be after [ parser
49
49
directives] ( #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
52
52
building. ` FROM ` may only be preceded by one or more ` ARG ` instructions, which
53
53
declare arguments that are used in ` FROM ` lines in the Dockerfile.
54
54
@@ -1052,9 +1052,9 @@ LABEL multi.label1="value1" \
1052
1052
> using string interpolation (e.g. ` LABEL example="foo-$ENV_VAR" ` ), single
1053
1053
> quotes will take the string as is without unpacking the variable's value.
1054
1054
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.
1058
1058
1059
1059
To view an image's labels, use the ` docker image inspect ` command. You can use
1060
1060
the ` --format ` option to show just the labels;
0 commit comments