Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
pycklets / resources / ansible-role / ANXS.postgresql / tests / Dockerfile-ubuntu14.04
Size: Mime:
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 -U setuptools && \
    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