Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

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;
}

§Properties

§
args?: string[]
[src]

Optional. Args is the container arguments to use. This overrides the default arguments defined in the container image.

§
command?: string[]
[src]

Optional. Command is the container entrypoint to use. This overrides the default entrypoint defined in the container image.

§
env?: {
[key: string]: string;
}
[src]

Optional. Environment variables that are set in the container.

§
image?: string
[src]

Required. Image is the container image to use.