I’ve been trying out container lambdas. One thing ...
# aws
f
I’ve been trying out container lambdas. One thing I notice is that pulumi seems to build and push my image every time I run
pulumi up
, whether or not there are any updates to the Dockerfile or any of its dependencies. I say “seems” because the image in ECR doesn’t actually get updated unless there’s a change. Is there a way to get pulumi to skip the image build step unless there are changes to the files in the Dockefile’s directory?
b
@fresh-spring-82225 this is a known issue and we have a fix coming for it in 4.0: https://github.com/pulumi/pulumi-docker/issues/132 You can try out the 4.x alpha release https://github.com/pulumi/pulumi-docker/releases/tag/v4.0.0-alpha.3
f
Thanks @billowy-army-68599!