Browse code

Merge pull request #22906 from nshalman/patch-1

Clarification about 'docker build --build-arg'

Vincent Demeester authored on 2016/05/24 22:33:27
Showing 1 changed files
... ...
@@ -299,6 +299,9 @@ accessed like regular environment variables in the `RUN` instruction of the
299 299
 Dockerfile. Also, these values don't persist in the intermediate or final images
300 300
 like `ENV` values do.
301 301
 
302
+Using this flag will not alter the output you see when the `ARG` lines from the
303
+Dockerfile are echoed during the build process.
304
+
302 305
 For detailed information on using `ARG` and `ENV` instructions, see the
303 306
 [Dockerfile reference](../builder.md).
304 307