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-alpine3/Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to '1.9-alpine3') diff --git a/1.9-alpine3/Dockerfile b/1.9-alpine3/Dockerfile index fe62f16..bf6d3ae 100644 --- a/1.9-alpine3/Dockerfile +++ b/1.9-alpine3/Dockerfile @@ -13,9 +13,10 @@ MAINTAINER William Yeh RUN echo "===> Adding Python runtime..." && \ - apk --update add python py-pip openssl ca-certificates && \ - apk --update add --virtual build-dependencies python-dev build-base && \ - pip install --upgrade pip && \ + apk --update add python py-pip openssl ca-certificates && \ + apk --update add --virtual build-dependencies \ + python-dev libffi-dev openssl-dev build-base && \ + pip install --upgrade pip cffi && \ \ \ echo "===> Installing Ansible..." && \ -- cgit v1.2.3