This message was deleted.
# atlantis-community
s
This message was deleted.
🐍 1
j
A quick
docker run --rm -it --entrypoint /bin/bash <http://ghcr.io/runatlantis/atlantis:v0.25.0|ghcr.io/runatlantis/atlantis:v0.25.0>
and then running
python
returns
bash: python: command not found
so I am guessing it is not installed. It is pretty easy to add things to the base atlantis image though.
1
m
That is what I was finding too.
j
Actually looking at my Dockerfile here:
Copy code
FROM <http://ghcr.io/runatlantis/atlantis:v0.25.0|ghcr.io/runatlantis/atlantis:v0.25.0>

RUN apk add --no-cache jq python3 py3-pip

RUN pip3 install awscli
I apparently install python3 and then install the awscli
c
Yeah, I've had to make a new image with python before.
m
hmm, well I got the python script to run and I can see that its creating atlantis.yaml and the tfvars files that I am expecting but for some reason its not planning. "0 projects are to be planned based on their when_modified config" I will have to keep chipping away at that tomorrow.