From 432ef3347934c4cb6e03aa97754a77ad5bb453d8 Mon Sep 17 00:00:00 2001 From: Dominic <4678790+dweiller@users.noreply.github.com> Date: Thu, 25 Jul 2024 18:17:20 +1000 Subject: [PATCH] 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> --- docs/Containerfile.5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Containerfile.5.md b/docs/Containerfile.5.md index fe1f2fdf3..3e2bd7aaa 100644 --- a/docs/Containerfile.5.md +++ b/docs/Containerfile.5.md @@ -61,7 +61,7 @@ A Containerfile is similar to a Makefile. `FROM image@digest [AS ]` -- 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