This is a basic Ubuntu 14.04 box with ansible pre-installed from the official PPA. The corresponding Dockerfile looks like this:
FROM ubuntu:14.04
MAINTAINER Sebastian Vetter <[email protected]>
RUN apt-get update && \
apt-get install -y software-properties-common
RUN apt-add-repository ppa:rquillo/ansible && \
apt-get update && \
sudo apt-get install -y ansible
It doesn't specify a CMD or ENTRYPOINT because it is intended to be used as a base image that uses ansible playbook(s) to set up a docker image.
Content type
Image
Digest
sha256:ee337a461…
Size
112.2 MB
Last updated
almost 11 years ago
docker pull elbaschid/ansible:14.04