From 54a2a3470572891d165dabb7295fdb283e0471d7 Mon Sep 17 00:00:00 2001 From: Sam Yaple Date: Thu, 12 Jan 2017 18:43:40 +0000 Subject: [PATCH] Add uwsgi and openvswitch to builds --- dockerfiles/Dockerfile-centos | 1 + dockerfiles/Dockerfile-debian | 1 + dockerfiles/Dockerfile-ubuntu | 1 + 3 files changed, 3 insertions(+) diff --git a/dockerfiles/Dockerfile-centos b/dockerfiles/Dockerfile-centos index 60c3dba..225adfa 100644 --- a/dockerfiles/Dockerfile-centos +++ b/dockerfiles/Dockerfile-centos @@ -55,6 +55,7 @@ RUN set -x \ && sed -i "s/spec-cleaner===0.9.1/spec-cleaner===0.9.0/" /root/packages/upper-constraints.txt \ # NOTE(Pete Birley): end bug workaround && pip wheel -w /root/packages/ -r /root/packages/global-requirements.txt -c /root/packages/upper-constraints.txt \ + uwsgi \ && yum history -y undo $(yum history list gcc | tail -2 | head -1 | awk '{ print $1}') \ && yum clean all \ && rm -rf /tmp/* /root/.cache diff --git a/dockerfiles/Dockerfile-debian b/dockerfiles/Dockerfile-debian index b506dd2..4ed7215 100644 --- a/dockerfiles/Dockerfile-debian +++ b/dockerfiles/Dockerfile-debian @@ -40,6 +40,7 @@ RUN set -x \ && pip wheel -w /root/packages/ $(grep dogtag-pki /root/packages/upper-constraints.txt) /tmp/python-nss/ \ # NOTE(SamYaple): end bug workaround && pip wheel -w /root/packages/ -r /root/packages/global-requirements.txt -c /root/packages/upper-constraints.txt \ + uwsgi \ && apt-get purge -y --auto-remove \ build-essential \ ca-certificates \ diff --git a/dockerfiles/Dockerfile-ubuntu b/dockerfiles/Dockerfile-ubuntu index 54ab98e..69a5338 100644 --- a/dockerfiles/Dockerfile-ubuntu +++ b/dockerfiles/Dockerfile-ubuntu @@ -38,6 +38,7 @@ RUN set -x \ && pip wheel -w /root/packages/ $(grep dogtag-pki /root/packages/upper-constraints.txt) /tmp/python-nss/ \ # NOTE(SamYaple): end bug workaround && pip wheel -w /root/packages/ -r /root/packages/global-requirements.txt -c /root/packages/upper-constraints.txt \ + uwsgi \ && apt-get purge -y --auto-remove \ build-essential \ ca-certificates \