Cut down code is below
I've actually logged an issue in the pulumi-docker repo
here, it might be a different issue as a more common one I'm getting is
docker login failed with exit code 1
which this issue might be a subsequent one as it cannot push.
const appBaseImage = new docker.Image(`${componentName}-image`, {
imageName: out.appBaseImageUri,
build: {
args: {
UBUNTU_VERSION: "...",
UBUNTU_RELEASE: "...",
NODE_VERSION: "...",
APP_VERSION: "...",
},
context: `./content/app-docker-base`,
},
registry: {
server: k8sRegistryLoginServer,
username: k8sRegistryUsername,
password: k8sRegistryPassword,
},
});