Created
August 7, 2014 06:31
-
-
Save Yasushi/4d92a12a4be679e68ec0 to your computer and use it in GitHub Desktop.
ansible
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:14.04 | |
ENV DEBIAN_FRONTEND noninteractive | |
ENV INITRD No | |
RUN apt-get -qq update && apt-get -y install software-properties-common | |
RUN apt-add-repository ppa:ansible/ansible | |
RUN apt-get -qq update && apt-get -y instal ansible | |
RUN mkdir -p /data | |
WORKDIR /data | |
VOLUME [ "/data" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment