opencode_cloud_core/docker/assets.rs
1//! Canonical embedded Docker runtime assets shared across crates.
2//!
3//! Keep these constants as the single source of truth for runtime drift checks
4//! and Docker build-context packaging.
5
6pub const OPENCODE_CLOUD_BOOTSTRAP_SH: &[u8] = include_bytes!("files/opencode-cloud-bootstrap.sh");
7pub const ENTRYPOINT_SH: &[u8] = include_bytes!("files/entrypoint.sh");
8pub const HEALTHCHECK_SH: &[u8] = include_bytes!("files/healthcheck.sh");