ambitious-van-68615
07/03/2019, 12:52 PMsetup.sh
Shell script for installing Pulumi instead of the official Docker image (https://hub.docker.com/r/pulumi/pulumi) ?
Note : I believe the associated Dockerfile is here (https://github.com/pulumi/pulumi/blob/master/dist/docker/Dockerfile)clever-sunset-76585
07/03/2019, 4:14 PMambitious-van-68615
07/04/2019, 7:42 AMcd dir
using this official CLI Docker image, possibly due to the ENTRYPOINT ["pulumi"]
in the associated Dockerfile 😔
I get `Error: unknown command "sh" for "pulumi"``millions-judge-24978
07/05/2019, 7:31 PMpulumi
if it fits your use case:
-C, --cwd string Run pulumi as if it had been started in another directory
docker run -it --rm --entrypoint=/bin/sh pulumi/pulumi
locally will give you a shell into the containerambitious-van-68615
07/05/2019, 9:41 PMimage:entrypoint
option