Created
March 18, 2021 13:37
-
-
Save pierskarsenbarg/4fbac92277c99f7c1dd0f91562b0ccd6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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