@runloop/api-client - v1.4.0
    Preparing search index...

    Container configuration specifying the base image and setup commands.

    interface ContainerConfig {
        base_image_name: string;
        architecture?: "arm64" | "x86_64";
        setup_commands?: string[] | null;
    }
    Index

    Properties

    base_image_name: string

    The name of the base image. Should be one of the GitHub public images like ubuntu-latest, ubuntu-24.04, ubuntu-22.04, windows-latest, windows-2022, macos-latest etc.

    architecture?: "arm64" | "x86_64"

    The target architecture for the Repository Container.

    setup_commands?: string[] | null

    Commands to run to setup the base container such as installing necessary toolchains (e.g. apt install).