zlayer-builder 0.10.76

Dockerfile parsing and buildah-based container image building
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Dockerfile parsing and representation
//!
//! This module provides types and functions for parsing Dockerfiles into a structured
//! representation that can be used for analysis, validation, and conversion to buildah commands.

mod instruction;
mod parser;
mod variable;

pub use instruction::*;
pub use parser::*;
pub use variable::*;