From 97d48efeb67f4f7566752625ad3ce233f31985be Mon Sep 17 00:00:00 2001 From: William Yeh Date: Mon, 9 May 2016 16:34:32 +0800 Subject: Add: support for Ubuntu 16.04 LTS (Xenial). Fix: 1. OS-level packages `libffi-dev` and `libssl-dev`/`openssl-dev` should be installed explicitly since Ansible 2.0.2.0(???). 2. Python package cffi should be installed explicitly since Ansible 2.0.2.0(???). 3. add '--fix-missing' for apt. @see https://github.com/boxcutter/ubuntu/issues/62 @see https://github.com/pyca/cryptography/issues/2280 --- 1.9-centos7/Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to '1.9-centos7/Dockerfile') diff --git a/1.9-centos7/Dockerfile b/1.9-centos7/Dockerfile index 8d6da85..9ae523a 100644 --- a/1.9-centos7/Dockerfile +++ b/1.9-centos7/Dockerfile @@ -41,12 +41,13 @@ RUN echo "===> Enabling systemd..." && \ \ \ echo "===> Adding Ansible's prerequisites..." && \ - yum -y install gcc python-devel python-pip && \ + yum -y install gcc python-devel python-pip \ + libffi-devel openssl-devel && \ pip install --upgrade pip && \ \ \ echo "===> Installing Ansible..." && \ - pip install ansible==1.9.4 && \ + pip install --upgrade ansible==1.9.4 && \ \ \ echo "===> Disabling sudo 'requiretty' setting..." && \ @@ -54,7 +55,8 @@ RUN echo "===> Enabling systemd..." && \ \ \ echo "===> Removing unused YUM resources..." && \ - yum -y remove epel-release gcc python-devel python-pip && \ + yum -y remove epel-release gcc python-devel python-pip \ + libffi-devel openssl-devel || true && \ yum clean all && \ \ \ -- cgit v1.2.3