export type SandboxDockerConfig = { image: string; containerPrefix: string; workdir: string; readOnlyRoot: boolean; tmpfs: string[]; network: string; user?: string; capDrop: string[]; env?: Record; setupCommand?: string; pidsLimit?: number; memory?: string | number; memorySwap?: string | number; cpus?: number; ulimits?: Record; seccompProfile?: string; apparmorProfile?: string; dns?: string[]; extraHosts?: string[]; binds?: string[]; };