Hello, while I’m trying to execute a pulumi autiom...
# automation-api
b
Hello, while I’m trying to execute a pulumi autiomation within my microservice (running in kubernetes / docker container) I’m continuing to have the same error of
Error: Command failed with EACCES: pulumi version --non-interactive
. I’ve installed pulumi in the docker image and linked the PATH, but nothing changed. Any idea about permissions or any other requirements in docker image?
m
Hi @brash-hairdresser-60389, have a look into our
Dockerfile
you may spot a difference: https://github.com/pulumi/pulumi-docker-containers/blob/main/docker/pulumi/Dockerfile
b
Thank you very much for your answer. So do you think the difference could be
Copy code
RUN curl -fsSL <https://get.pulumi.com/|https://get.pulumi.com/> | bash -s -- --version $PULUMI_VERSION && \ 
   mv ~/.pulumi/bin/* /usr/bin
The pulumi bin move to the usr bin?