Skip to content

Commit

Permalink
doc: fix typo in Containerfile.5.md
Browse files Browse the repository at this point in the history
A missing leading '*' in '*FROM**' caused FROM to be rendered as italic rather than bold as markdown/html and as '*FROM**' (i.e. no styling) a man page.

Signed-off-by: Dominic <4678790+dweiller@users.noreply.github.com>
  • Loading branch information
dweiller authored Jul 25, 2024
1 parent f1530b4 commit 10f764a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/Containerfile.5.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 10f764a

Please sign in to comment.