atmos/Dockerfile

9 lines
275 B
Text
Raw Permalink Normal View History

2019-04-09 16:54:28 +02:00
FROM alpine
RUN apk add python3
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
2019-04-10 14:14:20 +02:00
COPY atmos.py /usr/bin/atmos