Hi, I'm deploying many container en gcp, using `gc...
# general
r
Hi, I'm deploying many container en gcp, using
gcp.container.Registry
then
docker.image.Image
to build it. Every time i make a pulumi up, it's took a looooong time to compile my dockers and then to repush then on my registry, even if their is no change. Pulumi don't use cache ? If i do it manually using
docker build
command, it's instant. Thank's
s
Pulumi will use whatever layers are present on your machine. Are you absolutely sure there are no changes between runs? Is the docker build command you're using equivalent/identical to the pulumi code in terms of values and flags? I haven't run into this problem before.