hello, I am currently trying to deploy a local doc...
# general
b
hello, I am currently trying to deploy a local dockerfile with pulumi: main_app_image = docker_build.Image( "main-app-image", network=docker_build.NetworkMode.HOST, context={"location": "../auth_server"}, tags=["mscope_server:latest"], push=False, } However, I am having issues with fetching metadata from the registery (i/o timeout). I think it is probably due to my network environment which by default blocks docker.io. I tried building the dockerfile independently using docker build, and it worked, but not with pulumi. I also tried turning off the vpn and build again. The former failed. So that means a vpn is necessary, but with network set to HOST building with pulumi should be identical building manually with docker build? Apologies for lack of skills at this, but does anyone have any workarounds? Thanks in advance.