Skip to content

Commit

Permalink
Update __main__.py
Browse files Browse the repository at this point in the history
docker.DockerBuild was changed to DockerBuildArgs back in Novermber of 2022: pulumi/pulumi-docker#413 (comment)
  • Loading branch information
maravedi authored Aug 30, 2023
1 parent 046330c commit bfb8ae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azure-py-containerapps/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
my_image = docker.Image(custom_image,
image_name=registry.login_server.apply(
lambda login_server: f"{login_server}/{custom_image}:v1.0.0"),
build=docker.DockerBuild(context=f"./{custom_image}"),
build=docker.DockerBuildArgs(context=f"./{custom_image}"),
registry=docker.ImageRegistry(
server=registry.login_server,
username=admin_username,
Expand Down

0 comments on commit bfb8ae3

Please sign in to comment.