Skip to content

Instantly share code, notes, and snippets.

@pierskarsenbarg
Created March 18, 2021 13:37
Show Gist options
  • Select an option

  • Save pierskarsenbarg/4fbac92277c99f7c1dd0f91562b0ccd6 to your computer and use it in GitHub Desktop.

Select an option

Save pierskarsenbarg/4fbac92277c99f7c1dd0f91562b0ccd6 to your computer and use it in GitHub Desktop.
import * as docker from "@pulumi/docker";
const image = new docker.Image("image", {
imageName: "myimage",
build: {
args: {
arg1: "arg1value"
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment