Merge pull request #322 from weslord/dbp-space-removal

Space in Dockerfile Best Practices may be causing formatting problem
This commit is contained in:
John Mulhausen 2016-10-24 18:11:52 -07:00 committed by GitHub
commit 97fd3d381c
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ During the process of building an image Docker will step through the
instructions in your `Dockerfile` executing each in the order specified. instructions in your `Dockerfile` executing each in the order specified.
As each instruction is examined Docker will look for an existing image in its As each instruction is examined Docker will look for an existing image in its
cache that it can reuse, rather than creating a new (duplicate) image. cache that it can reuse, rather than creating a new (duplicate) image.
If you do not want to use the cache at all you can use the ` --no-cache=true` If you do not want to use the cache at all you can use the `--no-cache=true`
option on the `docker build` command. option on the `docker build` command.
However, if you do let Docker use its cache then it is very important to However, if you do let Docker use its cache then it is very important to