1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
# -*- coding: utf-8 -*- #
# frozen_string_literal: true
module Rouge
module Lexers
class Docker < RegexLexer
title "Docker"
desc "Dockerfile syntax"
tag 'docker'
aliases 'dockerfile', 'Dockerfile', 'containerfile', 'Containerfile'
filenames 'Dockerfile', 'Dockerfile.*', '*.Dockerfile', '*.docker', 'Containerfile', 'Containerfile.*', '*.Containerfile'
mimetypes 'text/x-dockerfile-config'
KEYWORDS = %w(
FROM MAINTAINER CMD LABEL EXPOSE ENV ADD COPY ENTRYPOINT VOLUME USER WORKDIR ARG STOPSIGNAL HEALTHCHECK SHELL
).join('|')
start { @shell = Shell.new(@options) }
state :root do
rule %r/\s+/, Text
rule %r/^(FROM)(\s+)(.*)(\s+)(AS)(\s+)(.*)/io do
groups Keyword, Text::Whitespace, Str, Text::Whitespace, Keyword, Text::Whitespace, Str
end
rule %r/^(ONBUILD)(\s+)(#{KEYWORDS})(.*)/io do
groups Keyword, Text::Whitespace, Keyword, Str
end
rule %r/^(#{KEYWORDS})\b(.*)/io do
groups Keyword, Str
end
rule %r/#.*?$/, Comment
rule %r/^(ONBUILD\s+)?RUN(\s+)/i do
token Keyword
push :run
@shell.reset!
end
rule %r/\w+/, Text
rule %r/[^\w]+/, Text
rule %r/./, Text
end
state :run do
rule %r/\n/, Text, :pop!
rule %r/\\./m, Str::Escape
rule(/(\\.|[^\n\\])+/) { delegate @shell }
end
end
end
end
|