zlayer-builder 0.13.0

Dockerfile parsing and buildah-based container image building
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! 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 render;
mod variable;

pub use instruction::*;
pub use parser::*;
pub use render::{
    expand_dockerfile, forward_build_arg_env, merge_default_cache_mounts, render_dockerfile,
};
pub use variable::*;

pub(crate) use render::escape_json_string;