diff options
Diffstat (limited to 'queries/dockerfile.scm')
| -rw-r--r-- | queries/dockerfile.scm | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/queries/dockerfile.scm b/queries/dockerfile.scm new file mode 100644 index 0000000..7f9dc83 --- /dev/null +++ b/queries/dockerfile.scm @@ -0,0 +1,56 @@ +[ + "FROM" + "AS" + "RUN" + "CMD" + "LABEL" + "EXPOSE" + "ENV" + "ADD" + "COPY" + "ENTRYPOINT" + "VOLUME" + "USER" + "WORKDIR" + "ARG" + "ONBUILD" + "STOPSIGNAL" + "HEALTHCHECK" + "SHELL" + "MAINTAINER" + "CROSS_BUILD" + (heredoc_marker) + (heredoc_end) +] @keyword + +[ + ":" + "@" +] @operator + +(comment) @comment + + +(image_spec + (image_tag + ":" @punctuation.special) + (image_digest + "@" @punctuation.special)) + +[ + (double_quoted_string) + (single_quoted_string) + (json_string) + (heredoc_line) +] @string + +(expansion + [ + "$" + "{" + "}" + ] @punctuation.special +) @none + +((variable) @constant + (#match? @constant "^[A-Z][A-Z_0-9]*$"))
\ No newline at end of file |
