From e08a441575de22178051d56612bab4c796119eeb Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Sun, 1 Nov 2020 18:08:36 +0100 Subject: [PATCH] docs/builder: fix typo Signed-off-by: Eric Engestrom --- 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 2093a70707..510eab89ce 100644 --- a/docs/reference/builder.md +++ b/docs/reference/builder.md @@ -2043,7 +2043,7 @@ RUN echo hello If you specify `--build-arg CONT_IMG_VER=` on the command line, in both cases, the specification on line 2 does not cause a cache miss; line 3 does cause a cache miss.`ARG CONT_IMG_VER` causes the RUN line to be identified -as the same as running `CONT_IMG_VER=` echo hello, so if the `` +as the same as running `CONT_IMG_VER= echo hello`, so if the `` changes, we get a cache miss. Consider another example under the same command line: