import * as docker from "@pulumi/docker"; const image = new docker.Image("image", { imageName: "myimage", build: { args: { arg1: "arg1value" } } });