so, you're using the pulumi image from inside a co...
# general
h
so, you're using the pulumi image from inside a container running the
docker:dind
image?
t
I want to install and run pulumi in my Gitlab runner.
h
oh, then skip
docker:dind
t
can you elaborate please?
h
GitLab lets you specify any image
t
ALright let me look into it
h
so use
pulumi/pulumi
(https://hub.docker.com/r/pulumi/pulumi) or define your own by having a Dockerfile like:
Copy code
FROM python:latest
RUN curl -fsSL <https://get.pulumi.com> | sh
(Substitute the appropriate base image of your choice) If you make a new repo with just a
Dockerfile
and turn on auto devops, GitLab will build the image and upload it to gitlab container registry. For extra fun, set up a pipeline schedule and rebuild it nightly/weekly/etc.
(it's not actually clear what languages
pulumi/pulumi
supports)