From 558b8923ab0a63e6ed0a9489ab375d53ac7b182d Mon Sep 17 00:00:00 2001 From: Remy Suen Date: Fri, 10 Mar 2017 07:11:30 +0900 Subject: [PATCH] Fix directive example to match description The description claims the directive is appearing after a comment but the sample Dockerfile has the directive appear after an instruction. Changed the ordering of the lines to match the example's description. Signed-off-by: Remy Suen --- docs/reference/builder.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/builder.md b/docs/reference/builder.md index 8c39b512..75c7e0c0 100644 --- a/docs/reference/builder.md +++ b/docs/reference/builder.md @@ -199,8 +199,8 @@ directive: ```Dockerfile # About my dockerfile -FROM ImageName # directive=value +FROM ImageName ``` The unknown directive is treated as a comment due to not being recognized. In