Skip to content

Instantly share code, notes, and snippets.

@kongou-ae
Last active April 19, 2017 01:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kongou-ae/2ebc3049df2bef7441f5276017f6cd88 to your computer and use it in GitHub Desktop.
Save kongou-ae/2ebc3049df2bef7441f5276017f6cd88 to your computer and use it in GitHub Desktop.
FROM ubuntu
RUN apt-get update && \
apt-get install -y python3 python3-dev libssl-dev python3-pip ruby wget -no-install-recommends && \
apt-get clean && rm -rf /var/cache/apt/archives/* /var/lib/apt/lists/* && \
apt-get update && \
pip3 install ansible && \
gem install serverspec test-kitchen --no-ri --no-rdoc && \
pip3 install awscli && \
pip3 install aws-shell && \
pip3 install azure-cli && \
pip3 install azure-cli-shell && \
update-alternatives --install /usr/bin/python python /usr/bin/python3.5 1 && \
wget https://releases.hashicorp.com/terraform/0.9.3/terraform_0.9.3_linux_amd64.zip && \
unzip terraform_0.9.3_linux_amd64.zip && mv terraform /usr/bin/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment