tree-sitter-dockerfile/corpus/healthcheck.txt
2021-05-09 20:11:30 -06:00

40 lines
493 B
Plaintext

==================
None
==================
HEALTHCHECK NONE
---
(source_file
(healthcheck_instruction))
==================
Custom command
==================
HEALTHCHECK CMD echo "test"
---
(source_file
(healthcheck_instruction
(cmd_instruction
(shell_command))))
==================
With options
==================
HEALTHCHECK --interval=10s --retries=10 CMD echo "test"
---
(source_file
(healthcheck_instruction
(param)
(param)
(cmd_instruction
(shell_command))))