tree-sitter-dockerfile/corpus/add.txt

28 lines
266 B
Plaintext
Raw Normal View History

2021-05-09 22:11:30 -04:00
==================
No param
==================
ADD /src ./dst
---
(source_file
(add_instruction
(path)
(path)))
==================
With param
==================
ADD --chown=a:b /src ./dst
---
(source_file
(add_instruction
(param)
(path)
(path)))