This message was deleted.
# kubernetes
s
This message was deleted.
b
would you be able to share the code you have?
👍 1
k
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.
Copy code
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,
    },
  });
This was resolved by migrating from the docker snap to the official docker CE dist