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