atmos/Dockerfile
Conor.McManus 9ff0f37356 Atmos v.1
2019-04-10 12:00:01 +02:00

10 lines
No EOL
320 B
Docker

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
COPY atmos.py /usr/bin/atmos
COPY atmos.config /root/.config/atmos.config