Merge pull request #2821 from 1ace/patch-1

docs/builder: fix trivial formatting typo
This commit is contained in:
Sebastiaan van Stijn 2020-11-06 12:38:53 +01:00 committed by GitHub
commit d5f1c8ebd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2043,7 +2043,7 @@ RUN echo hello
If you specify `--build-arg CONT_IMG_VER=<value>` 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=<value>` echo hello, so if the `<value>`
as the same as running `CONT_IMG_VER=<value> echo hello`, so if the `<value>`
changes, we get a cache miss.
Consider another example under the same command line: