tree-sitter-dockerfile/corpus/run.txt
Martin Jambon 98fdcad2a0 Add support for single-quoted strings and distinguish JSON strings from
the double-quoted strings that support variable expansion.
2023-06-22 19:44:07 -07:00

81 lines
1.1 KiB
Plaintext

==================
Shell command
==================
RUN echo "test"
---
(source_file
(run_instruction
(shell_command
(shell_fragment))))
==================
Shell command multiline
==================
RUN echo "test" \
"foo" \
bar
---
(source_file
(run_instruction
(shell_command
(shell_fragment)
(line_continuation)
(shell_fragment)
(line_continuation)
(shell_fragment))))
==================
Run with shell empty array
==================
run []
---
(source_file
(run_instruction
(json_string_array)))
==================
Run with shell array
==================
run ["echo", "test"]
---
(source_file
(run_instruction
(json_string_array
(json_string)
(json_string))))
==================
Run with options
==================
run --mount=type=secret,id=aws,target=/root/.aws/credentials \
--security=insecure \
aws s3 cp s3://example.com
---
(source_file
(run_instruction
(mount_param
(mount_param_param)
(mount_param_param)
(mount_param_param))
(line_continuation)
(param)
(line_continuation)
(shell_command
(shell_fragment))))