https://pulumi.com logo
h

high-translator-22614

08/07/2019, 5:11 PM
so, you're using the pulumi image from inside a container running the
docker:dind
image?
t

thankful-optician-22583

08/07/2019, 5:13 PM
I want to install and run pulumi in my Gitlab runner.
h

high-translator-22614

08/07/2019, 5:41 PM
oh, then skip
docker:dind
t

thankful-optician-22583

08/07/2019, 5:42 PM
can you elaborate please?
h

high-translator-22614

08/07/2019, 5:42 PM
GitLab lets you specify any image
t

thankful-optician-22583

08/07/2019, 5:43 PM
ALright let me look into it
h

high-translator-22614

08/07/2019, 5:44 PM
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)
2 Views