[][src]Macro dockerfile_rs::MAINTAINER

macro_rules! MAINTAINER {
    ($name:expr) => { ... };
}

Deprecated, use LABEL! with maintainer key instead

Example

let maintainer = MAINTAINER!("Rustacean");
assert_eq!(maintainer.to_string(), r#"MAINTAINER Rustacean"#);