This message was deleted.
# google-cloud
s
This message was deleted.
m
If anyone stumbles upon this: when building the docker image and deploying a service in one go, you don't need to worry about the remote docker image. So forget about
docker.RemoteImage
and
docker.getRegistryImage
, just pass the name of the new, locally built image to the container:
Copy code
containers: [
  {
     image: localDockerImage.imageName,
  }
],
The image still needs to be tagged with
<http://gcri.io|gcri.io>
so it's pushed to the registry, but otherwise it's just a matter of build & deploy.