Documentation
¶
Index ¶
- type Command
- type Parser
- func (p *Parser) GetCommentToken() string
- func (p *Parser) GetKind() model.FileKind
- func (p *Parser) Parse(ctx context.Context, fileContent []byte, filePath string, ...) (resolved []byte, documents []model.Document, ignoreLines []int, ...)
- func (p *Parser) StringifyContent(content []byte) (string, error)
- func (p *Parser) SupportedExtensions() []string
- func (p *Parser) SupportedTypes() map[string]bool
- type Resource
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Command ¶
type Command struct {
Cmd string
SubCmd string
Flags []string
Value []string
Original string
StartLine int `json:"_kics_line"`
EndLine int
JSON bool
}
Command is the struct for each dockerfile command
type Parser ¶
type Parser struct {
}
Parser is a Dockerfile parser
func (*Parser) GetCommentToken ¶
GetCommentToken return the comment token of Docker - #
func (*Parser) Parse ¶
func (p *Parser) Parse(ctx context.Context, fileContent []byte, filePath string, resolveReferences bool, maxResolverDepth int) ( resolved []byte, documents []model.Document, ignoreLines []int, resolvedFiles map[string]model.ResolvedFile, err error)
Parse - parses dockerfile to Json
func (*Parser) StringifyContent ¶
StringifyContent converts original content into string formatted version
func (*Parser) SupportedExtensions ¶
SupportedExtensions returns Dockerfile extensions
func (*Parser) SupportedTypes ¶
SupportedTypes returns types supported by this parser, which are dockerfile
Click to show internal directories.
Click to hide internal directories.