tree-sitter-dockerfile/corpus/user.txt
Camden Cheek 71ac1e8880
allow numeric users and groups
Previously, users and groups were set to only allow alphabetical first
characters.
2022-03-07 11:02:36 -07:00

38 lines
440 B
Plaintext

==================
No group
==================
USER foo
---
(source_file
(user_instruction
user: (unquoted_string)))
==================
With group
==================
USER foo:bar
---
(source_file
(user_instruction
user: (unquoted_string)
group: (unquoted_string)))
==================
Numerical
==================
USER 1004:1004
---
(source_file
(user_instruction
user: (unquoted_string)
group: (unquoted_string)))