atmos/Dockerfile

13 lines
414 B
Text
Raw 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
2020-01-24 13:37:53 +01:00
RUN wget -O /tmp/terraform.zip https://releases.hashicorp.com/terraform/0.12.20/terraform_0.12.20_linux_amd64.zip
2019-04-09 16:54:28 +02:00
RUN unzip /tmp/terraform.zip
RUN mv terraform /usr/bin/
2019-08-14 12:49:55 +02:00
COPY git-askpass-helper.sh /usr/bin/git-pass
2020-01-24 14:12:49 +01:00
RUN mkdir /atmos
COPY atmos.py credentials.py workspaces.py /atmos/
RUN ln -s /atmos/atmos.py /usr/bin/atmos