macro_rules! ENTRYPOINT {
($($x:expr), +) => { ... };
}
Expand description
let entry_point = ENTRYPOINT!["/bin/bash/", "-c", "echo"];
assert_eq!(entry_point.to_string(), r#"ENTRYPOINT ["/bin/bash/", "-c", "echo"]"#);
macro_rules! ENTRYPOINT {
($($x:expr), +) => { ... };
}
let entry_point = ENTRYPOINT!["/bin/bash/", "-c", "echo"];
assert_eq!(entry_point.to_string(), r#"ENTRYPOINT ["/bin/bash/", "-c", "echo"]"#);