Hi everyone, hope it's going well. I was wandering...
# python
g
Hi everyone, hope it's going well. I was wandering whether it is possible to build and publish docker images with Python's pulumi-docker library. It seems like the python variant of https://www.pulumi.com/docs/reference/pkg/nodejs/pulumi/docker/#Image is missing. I think there is an unanswered issue regarding this: https://github.com/pulumi/pulumi-docker/issues/129 . I am trying to follow this step: https://www.pulumi.com/blog/google-cloud-run-serverless-containers/#build-and-publish-the-docker-image in Python. Thank you very much for your help.
w
Yes, currently that library is available in NodeJS and .NET. Python support will be added soon. I just added a reply on the issue as well. Those libraries mostly just wrap shelling out to
Docker build
and
docker push
which you may be able to do yourself for now.
g
Thank you for the reply.