systemprompt-cli 0.13.0

Unified CLI for systemprompt.io AI governance: agent orchestration, MCP governance, analytics, profiles, cloud deploy, and self-hosted operations.
Documentation
//! Generation and validation of the per-profile deployment Dockerfile.
//!
//! [`DockerfileBuilder`] renders a Dockerfile from the discovered extensions
//! and services config; the validation helpers assert a profile's Dockerfile
//! copies the expected MCP binaries and carries no stale ones.

mod builder;
mod validation;

use std::path::Path;

pub use builder::DockerfileBuilder;
pub use validation::{
    get_required_mcp_copy_lines, validate_dockerfile_has_mcp_binaries,
    validate_dockerfile_has_no_stale_binaries, validate_profile_dockerfile,
};

pub fn generate_dockerfile_content(project_root: &Path) -> String {
    DockerfileBuilder::new(project_root).build()
}