Slackbot
08/29/2023, 7:46 PMJason Reslock
08/29/2023, 7:53 PMdocker 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.Matt McLane
08/29/2023, 7:53 PMJason Reslock
08/29/2023, 7:54 PMFROM <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 awscliChastity Blackwell
08/29/2023, 7:54 PMMatt McLane
08/29/2023, 8:33 PM