1 2 3 4 5 6 7 8 9 10 11
//! Dockerfile parser module. //! //! Provides: //! - `instruction` - Dockerfile AST types //! - `dockerfile` - nom-based parser implementation pub mod dockerfile; pub mod instruction; pub use dockerfile::{ParseError, parse_dockerfile}; pub use instruction::*;