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
//! `ZImagefile` - YAML-based image build format
//!
//! This module provides types, parsing, and conversion for `ZImagefiles`,
//! an alternative to Dockerfiles using YAML syntax.

mod converter;
mod parser;
pub mod types;

pub use converter::{convert_cache_mount, zimage_to_dockerfile};
pub use parser::parse_zimagefile;
pub use types::*;