doc: fix typo in Containerfile.5.md
A missing leading '*' in '*FROM**' caused FROM to be rendered as italic rather than bold in markdown/html and as '*FROM**' (i.e. no styling) in the man page. Signed-off-by: Dominic <4678790+dweiller@users.noreply.github.com>
This commit is contained in:
parent
b9fbff9b83
commit
fbc5d7baea
|
|
@ -61,7 +61,7 @@ A Containerfile is similar to a Makefile.
|
|||
`FROM image@digest [AS <name>]`
|
||||
|
||||
-- The **FROM** instruction sets the base image for subsequent instructions. A
|
||||
valid Containerfile must have either **ARG** or *FROM** as its first instruction.
|
||||
valid Containerfile must have either **ARG** or **FROM** as its first instruction.
|
||||
If **FROM** is not the first instruction in the file, it may only be preceded by
|
||||
one or more ARG instructions, which declare arguments that are used in the next FROM line in the Containerfile.
|
||||
The image can be any valid image. It is easy to start by pulling an image from the public
|
||||
|
|
|
|||
Loading…
Reference in New Issue