ContainerTask
import type { ContainerTask } from "https://googleapis.deno.dev/v1/clouddeploy:v1.ts";This task is represented by a container that is executed in the Cloud Build execution environment.
interface ContainerTask {
args?: string[];
command?: string[];
env?: {};
[key: string]: string;
image?: string;
}