atmos/Dockerfile
2019-06-04 09:23:28 +02:00

9 lines
No EOL
326 B
Docker

FROM ubuntu:xenial
RUN apt-get update -y && apt-get install -y python3 wget unzip git
RUN wget -O /tmp/terraform.zip https://releases.hashicorp.com/terraform/0.12.0/terraform_0.12.0_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