This message was deleted.
s
This message was deleted.
l
For which language? There are language-specific Docker containers, and the main non-specific Docker container. Afaik all the necessary tools are in them. I use the nodejs one and everything I need is there.
FROM pulumi/pulumi-nodejs:2.5.0
is what I'm using.
pulumi/pulumi
is the multi-language one.
g
We just published a blog post last week about the Docker images that we publish that can help you get started - https://www.pulumi.com/blog/introducing-new-docker-images/. They're generally meant for automation in a CD tool, but you can run those interactively - e.g.
docker run -it --entrypoint /bin/bash pulumi/pulumi-nodejs:2.5.0
. Or one of the other ones for Go, Python, etc.
l
They're great for interactive use. I finally sorted the last of the issues with mine: I can now run VSCode in WSL2 and debug my Pulumi apps running in a container built from pulumi/pulumi-nodejs. I don't have node or npm installed on my machine... 😍
☝️ 1