Skip to content

Instantly share code, notes, and snippets.

@Yasushi
Created August 7, 2014 06:31
Show Gist options
  • Save Yasushi/4d92a12a4be679e68ec0 to your computer and use it in GitHub Desktop.
Save Yasushi/4d92a12a4be679e68ec0 to your computer and use it in GitHub Desktop.
ansible
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