Folks, I am fighting with a hang in: ```docker_ima...
# python
m
Folks, I am fighting with a hang in:
Copy code
docker_image = docker.Image("server",
    image_name=ecr.repository_url,
    build=docker.DockerBuildArgs(
        context=app_path,
        platform="linux/amd64"
    ),
    registry=app_registry,
    skip_push=False
)
Is there any good way to debug this? Are there common issues? It does not seem to be an interactive issue - at least not wrt to Pulumi. The container builds on the command line using 'docker build -t image .'
w
did you manage to find the issue?