atmos/Dockerfile

9 lines
326 B
Text
Raw Permalink Normal View History

2019-04-15 16:46:08 +02:00
FROM ubuntu:xenial
2019-04-09 16:54:28 +02:00
2019-04-16 10:26:59 +02:00
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
2019-04-09 16:54:28 +02:00
RUN unzip /tmp/terraform.zip
RUN mv terraform /usr/bin/
COPY shared-creds /root/.aws/credentials
2019-04-10 14:14:20 +02:00
COPY atmos.py /usr/bin/atmos