pub struct DockerBuildCommand {
pub no_cache: bool,
pub tech_stack: Option<String>,
pub agent: Option<String>,
pub project: Option<String>,
pub dry_run: bool,
}Expand description
Command to build TSK Docker images using the templating system
Fields§
§no_cache: boolWhether to build without using Docker’s cache
tech_stack: Option<String>Technology stack (defaults to “default”)
agent: Option<String>Agent (defaults to “claude”)
project: Option<String>Project (defaults to “default”)
dry_run: boolWhether to only print the resolved Dockerfile without building
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DockerBuildCommand
impl RefUnwindSafe for DockerBuildCommand
impl Send for DockerBuildCommand
impl Sync for DockerBuildCommand
impl Unpin for DockerBuildCommand
impl UnwindSafe for DockerBuildCommand
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more