b9859b2d49
``` FROM alpine RUN echo "Hey $name" ``` When building the above Dockerfile, the RUN command used to show: `echo Hey ` With this patch it now shows `echo "Hey $name"`. However, because it is very useful for debugging to see the values variables can take, they are expanded if set. ``` FROM alpine ENV name=Jude RUN echo "Hey $name" ``` Building the above Dockerfile makes the RUN command show: `echo "Hey Jude"`. Signed-off-by: Tibor Vass <tibor@docker.com> |
||
---|---|---|
.. | ||
envVarTest | ||
equal_env_unix.go | ||
equal_env_windows.go | ||
lex.go | ||
lex_test.go | ||
wordsTest |