Safe Haskell | Safe-Inferred |
---|---|
Language | GHC2021 |
Synopsis
- parseText :: Text -> Either Error Dockerfile
- parseFile :: FilePath -> IO (Either Error Dockerfile)
- parseStdin :: IO (Either Error Dockerfile)
- type Parser = Parsec DockerfileError Text
- type Error = ParseErrorBundle Text DockerfileError
- data DockerfileError
Documentation
parseStdin :: IO (Either Error Dockerfile) Source #
Reads the standard input until the end and parses the contents as a Dockerfile
type Error = ParseErrorBundle Text DockerfileError Source #
data DockerfileError Source #
DuplicateFlagError String | |
NoValueFlagError String | |
InvalidFlagError String | |
FileListError String | |
MissingArgument [Text] | |
DuplicateArgument Text | |
UnexpectedArgument Text Text | |
QuoteError String String |