fresh-hospital-81544
05/03/2021, 12:15 AMconst repo = new awsx.ecr.Repository("registry");
const image = repo.buildAndPushImage('/path/to/image');
I notice each time I run pulumi up the image is getting built and pushed (hits the cache so the time delay isn't too bad but still unnecessary to run these steps every time). Is there a way to skip this altogether if the image directory has not changed?
thanks