branch: elpa/dockerfile-mode commit b99346c73840a3e607a7b7d0951c0808ef7b2780 Author: Julio Lajara <ju2whe...@gmail.com> Commit: Julio Lajara <ju2whe...@gmail.com>
Add missing keywords shell and healthcheck. --- dockerfile-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfile-mode.el b/dockerfile-mode.el index 0bd78aef53..c4e4b91217 100644 --- a/dockerfile-mode.el +++ b/dockerfile-mode.el @@ -49,7 +49,7 @@ Each element of the list will be passed as a separate `(,(cons (rx (or line-start "onbuild ") (group (or "from" "maintainer" "run" "cmd" "expose" "env" "arg" "add" "copy" "entrypoint" "volume" "user" "workdir" "onbuild" - "label" "stopsignal")) + "label" "stopsignal" "shell" "healthcheck")) word-boundary) font-lock-keyword-face) ,@(sh-font-lock-keywords)