This message was deleted.
# general
b
This message was deleted.
l
Hi! Are you meaning just using that as the base image, e.g.
FROM infracost/infracost-atlantis:atlantis0.19-infracost0.9
? I think that will work okay.
h
Yes! This
Copy code
# Using latest release of Atlantis
FROM <http://ghcr.io/runatlantis/atlantis:latest|ghcr.io/runatlantis/atlantis:latest>

# Install required packages and latest 0.9 version of Infracost
RUN apk --update --no-cache add ca-certificates openssl openssh-client curl git jq python3 py3-pip
RUN \
  curl -s -L <https://infracost.io/downloads/v0.9/infracost-linux-amd64.tar.gz> | tar xz -C /tmp && \
  mv /tmp/infracost-linux-amd64 /usr/bin/infracost
Will become this:
Copy code
# Using latest release of Atlantis
FROM infracost/infracost-atlantis:atlantis0.19-infracost0.9

# Install required packages and latest 0.9 version of Infracost
RUN apk --update --no-cache add python3 py3-pip
b
Hello! The guide mentions the old Atlantis version, I guess we need to update it πŸ™‚
h
Also one of the links in the docs leading to the containers on docker forces you to login πŸ™‚
πŸ‘ 1
l
Yep that should work.
Which link?
b
Yep. Thanks for catching :)
h
Nice!
l
That’s the docs updated, thanks @hundreds-minister-19763 πŸ™
πŸŽ‰ 1