From 57d366d79328ee5d127d05644b108bd4f7915cdc Mon Sep 17 00:00:00 2001 From: William Yeh Date: Mon, 11 Sep 2017 18:37:48 +0800 Subject: Add: Windows managed node support via "pywinrm". Remove: old distributions wheezy, precise, centos6. Remove: Ansible 1.9 was not supported in CentOS EPEL. See http://www.spinics.net/linux/fedora/epel-devel/msg00792.html --- 1.9-debian7-onbuild/Dockerfile | 55 ------------------------------------------ 1 file changed, 55 deletions(-) delete mode 100644 1.9-debian7-onbuild/Dockerfile (limited to '1.9-debian7-onbuild/Dockerfile') diff --git a/1.9-debian7-onbuild/Dockerfile b/1.9-debian7-onbuild/Dockerfile deleted file mode 100644 index ec8f2d1..0000000 --- a/1.9-debian7-onbuild/Dockerfile +++ /dev/null @@ -1,55 +0,0 @@ -# Dockerfile for building Ansible 1.9 image for Debian 7 (wheezy), with as few additional software as possible. -# -# @see https://launchpad.net/~ansible/+archive/ubuntu/ansible -# -# Version 1.0 -# - - -# pull base image -FROM debian:wheezy - -MAINTAINER William Yeh - - -RUN echo "===> Installing python, sudo, and supporting tools..." && \ - apt-get update -y && apt-get install --fix-missing && \ - DEBIAN_FRONTEND=noninteractive \ - apt-get install -y \ - python python-yaml sudo \ - curl gcc python-pip python-dev libffi-dev libssl-dev && \ - pip install --upgrade cffi && \ - \ - \ - echo "===> Installing Ansible..." && \ - pip install ansible==1.9.4 && \ - \ - \ - echo "===> Removing unused APT resources..." && \ - apt-get -f -y --auto-remove remove \ - gcc python-pip python-dev libffi-dev libssl-dev && \ - apt-get clean && \ - rm -rf /var/lib/apt/lists/* /tmp/* && \ - \ - \ - echo "===> Adding hosts for convenience..." && \ - mkdir -p /etc/ansible && \ - echo 'localhost' > /etc/ansible/hosts - - -COPY ansible-playbook-wrapper /usr/local/bin/ - -ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ - echo "===> Updating TLS certificates..." && \ - apt-get install -y openssl ca-certificates - -ONBUILD WORKDIR /tmp -ONBUILD COPY . /tmp -ONBUILD RUN \ - echo "===> Diagnosis: host information..." && \ - ansible -c local -m setup all - - - -# default command: display Ansible version -CMD [ "ansible-playbook", "--version" ] -- cgit v1.2.3