atmos/Dockerfile
2019-04-15 16:49:45 +02:00

9 lines
No EOL
317 B
Docker

FROM ubuntu:xenial
RUN apt update -y && apt install -y python3 wget unzip
RUN wget -O /tmp/terraform.zip https://releases.hashicorp.com/terraform/0.11.13/terraform_0.11.13_linux_amd64.zip
RUN unzip /tmp/terraform.zip
RUN mv terraform /usr/bin/
COPY shared-creds /root/.aws/credentials
COPY atmos.py /usr/bin/atmos