mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-23 02:51:37 +01:00
d6df0a53b5
Co-authored-by: Norwin Roosen <git@nroo.de> Co-authored-by: Norwin <git@nroo.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/390 Reviewed-by: 6543 <6543@obermui.de> Reviewed-by: Andrew Thornton <art27@cantab.net> Co-authored-by: Norwin <noerw@noreply.gitea.io> Co-committed-by: Norwin <noerw@noreply.gitea.io>
36 lines
1.2 KiB
Go
36 lines
1.2 KiB
Go
package d
|
|
|
|
import (
|
|
. "github.com/alecthomas/chroma" // nolint
|
|
"github.com/alecthomas/chroma/lexers/b"
|
|
"github.com/alecthomas/chroma/lexers/internal"
|
|
"github.com/alecthomas/chroma/lexers/j"
|
|
)
|
|
|
|
// Docker lexer.
|
|
var Docker = internal.Register(MustNewLazyLexer(
|
|
&Config{
|
|
Name: "Docker",
|
|
Aliases: []string{"docker", "dockerfile"},
|
|
Filenames: []string{"Dockerfile", "*.docker"},
|
|
MimeTypes: []string{"text/x-dockerfile-config"},
|
|
CaseInsensitive: true,
|
|
},
|
|
dockerRules,
|
|
))
|
|
|
|
func dockerRules() Rules {
|
|
return Rules{
|
|
"root": {
|
|
{`#.*`, Comment, nil},
|
|
{`(ONBUILD)((?:\s*\\?\s*))`, ByGroups(Keyword, Using(b.Bash)), nil},
|
|
{`(HEALTHCHECK)(((?:\s*\\?\s*)--\w+=\w+(?:\s*\\?\s*))*)`, ByGroups(Keyword, Using(b.Bash)), nil},
|
|
{`(VOLUME|ENTRYPOINT|CMD|SHELL)((?:\s*\\?\s*))(\[.*?\])`, ByGroups(Keyword, Using(b.Bash), Using(j.JSON)), nil},
|
|
{`(LABEL|ENV|ARG)((?:(?:\s*\\?\s*)\w+=\w+(?:\s*\\?\s*))*)`, ByGroups(Keyword, Using(b.Bash)), nil},
|
|
{`((?:FROM|MAINTAINER|EXPOSE|WORKDIR|USER|STOPSIGNAL)|VOLUME)\b(.*)`, ByGroups(Keyword, LiteralString), nil},
|
|
{`((?:RUN|CMD|ENTRYPOINT|ENV|ARG|LABEL|ADD|COPY))`, Keyword, nil},
|
|
{`(.*\\\n)*.+`, Using(b.Bash), nil},
|
|
},
|
|
}
|
|
}
|