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 --- master-debian7/Dockerfile | 67 ----------------------------------------------- 1 file changed, 67 deletions(-) delete mode 100644 master-debian7/Dockerfile (limited to 'master-debian7/Dockerfile') diff --git a/master-debian7/Dockerfile b/master-debian7/Dockerfile deleted file mode 100644 index dd217c7..0000000 --- a/master-debian7/Dockerfile +++ /dev/null @@ -1,67 +0,0 @@ -# Dockerfile for building Ansible image from source for Debian 7 (wheezy), with as few additional software as possible. -# -# @see http://docs.ansible.com/ansible/intro_installation.html#running-from-source -# -# Version 1.0 -# - - -# pull base image -FROM debian:wheezy - -MAINTAINER William Yeh - - -RUN echo "===> Adding Ansible's prerequisites..." && \ - apt-get update -y && apt-get install --fix-missing && \ - DEBIAN_FRONTEND=noninteractive \ - apt-get install --no-install-recommends -y -q \ - build-essential ca-certificates \ - python-pip python-dev python-yaml \ - libffi-dev libssl-dev \ - libxml2-dev libxslt1-dev zlib1g-dev \ - git sudo curl && \ - pip install --upgrade cffi && \ - pip install --upgrade pyyaml jinja2 pycrypto && \ - \ - \ - echo "===> Downloading Ansible's source tree..." && \ - git clone git://github.com/ansible/ansible.git --recursive && \ - \ - \ - echo "===> Compiling Ansible..." && \ - cd ansible && \ - bash -c 'source ./hacking/env-setup' && \ - \ - \ - echo "===> Moving useful Ansible stuff to /opt/ansible ..." && \ - mkdir -p /opt/ansible && \ - mv /ansible/bin /opt/ansible/bin && \ - mv /ansible/lib /opt/ansible/lib && \ - mv /ansible/docs /opt/ansible/docs && \ - rm -rf /ansible && \ - \ - \ - echo "===> Installing handy tools (not absolutely required)..." && \ - apt-get install -y sshpass openssh-client && \ - \ - \ - echo "===> Clean up..." && \ - apt-get remove -y --auto-remove \ - build-essential python-pip python-dev git libffi-dev libssl-dev && \ - apt-get clean && \ - rm -rf /var/lib/apt/lists/* && \ - \ - \ - echo "===> Adding hosts for convenience..." && \ - mkdir -p /etc/ansible && \ - echo 'localhost' > /etc/ansible/hosts - - -ENV PATH /opt/ansible/bin:$PATH -ENV PYTHONPATH /opt/ansible/lib:$PYTHONPATH -ENV MANPATH /opt/ansible/docs/man:$MANPATH - - -# default command: display Ansible version -CMD [ "ansible-playbook", "--version" ] -- cgit v1.2.3