use crate::{
ImageName, RunnableContainer, RunnableContainerBuilder, ToRunnableContainer, WaitStrategy,
};
#[derive(Debug)]
pub struct Alpine;
impl ToRunnableContainer for Alpine {
fn to_runnable(&self, builder: RunnableContainerBuilder) -> RunnableContainer {
builder
.with_image(ImageName::new("docker.io/alpine"))
.with_wait_strategy(WaitStrategy::None)
.with_command(["tail", "-f", "/dev/null"])
.build()
}
}