| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Language.Docker.Parser
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) #
Reads the standard input until the end and parses the contents as a Dockerfile
type Parser = Parsec DockerfileError Text #
type Error = ParseErrorBundle Text DockerfileError #
data DockerfileError #
Constructors
| DuplicateFlagError String | |
| NoValueFlagError String | |
| InvalidFlagError String | |
| FileListError String | |
| QuoteError String String |