Sha256: c60d01c814df8bdd16a40b5d1371d4cb6db4c1aa2d5a379ee518bdf36edc0814
Contents?: true
Size: 575 Bytes
Versions: 15
Compression:
Stored size: 575 Bytes
Contents
FROM ubuntu:14.04 MAINTAINER ANXS # Setup system with minimum requirements + ansible RUN apt-get update -qq && \ apt-get install -qq python-apt python-pycurl python-pip python-dev \ libffi-dev libssl-dev locales && \ echo 'en_US.UTF-8 UTF-8' > /var/lib/locales/supported.d/local && \ pip install -q ansible==1.9.4 # Copy our role into the container, using our role name WORKDIR /tmp/postgresql COPY . /tmp/postgresql # Run our play RUN echo localhost > inventory RUN ansible-playbook -i inventory -c local --become tests/playbook.yml
Version data entries
15 entries across 15 versions & 1 rubygems