41 lines
463 B
Plaintext
41 lines
463 B
Plaintext
|
==================
|
||
|
No default
|
||
|
==================
|
||
|
|
||
|
ARG test
|
||
|
|
||
|
---
|
||
|
|
||
|
(source_file
|
||
|
(arg_instruction
|
||
|
name: (unquoted_string)))
|
||
|
|
||
|
==================
|
||
|
With default
|
||
|
==================
|
||
|
|
||
|
ARG foo=bar
|
||
|
|
||
|
---
|
||
|
|
||
|
(source_file
|
||
|
(arg_instruction
|
||
|
name: (unquoted_string)
|
||
|
default: (unquoted_string)))
|
||
|
|
||
|
|
||
|
==================
|
||
|
With quoted default
|
||
|
==================
|
||
|
|
||
|
ARG foo="bar"
|
||
|
|
||
|
---
|
||
|
|
||
|
(source_file
|
||
|
(arg_instruction
|
||
|
name: (unquoted_string)
|
||
|
default: (double_quoted_string)))
|
||
|
|
||
|
|