Skip to content

Instantly share code, notes, and snippets.

@brandonsoto
Last active May 31, 2017 06:05
Show Gist options
  • Save brandonsoto/eeb0e8732de953d69a7e8a70f39c1afb to your computer and use it in GitHub Desktop.
Save brandonsoto/eeb0e8732de953d69a7e8a70f39c1afb to your computer and use it in GitHub Desktop.
Docker container with Ansible
FROM ubuntu:16.04
MAINTAINER Brandon Soto (brandon.soto09@gmail.com)
RUN apt-get update \
&& apt-get install -y software-properties-common \
&& apt-add-repository -y ppa:ansible/ansible \
&& apt-get update \
&& apt-get install -y ansible \
&& rm -rvf /var/lib/apt/lists/*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment