This repository contains the dockerfile to create an image with Pulumi and the Azure CLI installed
The main use for this is to ready-bake the installation so that we can run our Pulumi projects against Azure
Currently, this image is hosted on Dockerhub
docker build .Here's an example dockerfile that uses the image
FROM scottam/az-pulumi:latest
COPY . .
CMD "az login --service-principal -u "$ARM_CLIENT_ID" --password "$ARM_CLIENT_SECRET" --tenant "$ARM_TENANT_ID" && \
pulumi version"Open it up! Take a look
docker run -it scottam/az-pulumi:latest bash