From 3a0c6dc6147fc47e9db63748160bcf6f1d299b1f Mon Sep 17 00:00:00 2001 From: Pete Birley Date: Wed, 28 Jun 2017 15:23:59 -0500 Subject: [PATCH] Nova: add iproute package to images This PS adds the `ip` command to images, which is used during network setup of VM's. Change-Id: Iaccef74719779e85780f1f8f5385cc5f09671873 --- centos/Dockerfile | 1 + debian/Dockerfile | 1 + ubuntu/Dockerfile | 1 + 3 files changed, 3 insertions(+) diff --git a/centos/Dockerfile b/centos/Dockerfile index 1b43029..9593946 100644 --- a/centos/Dockerfile +++ b/centos/Dockerfile @@ -14,6 +14,7 @@ ADD $OVERRIDE / RUN set -x \ && yum upgrade -y \ && yum install -y git \ + iproute \ libpython2.7 \ libvirt0 \ libxml2 \ diff --git a/debian/Dockerfile b/debian/Dockerfile index c3b5f01..07b9535 100644 --- a/debian/Dockerfile +++ b/debian/Dockerfile @@ -16,6 +16,7 @@ RUN set -x \ && apt-get dist-upgrade -y \ && apt-get install -y --no-install-recommends git \ ca-certificates \ + iproute2 \ libpython2.7 \ libvirt0 \ libxml2 \ diff --git a/ubuntu/Dockerfile b/ubuntu/Dockerfile index a5b6c1e..17eafcb 100644 --- a/ubuntu/Dockerfile +++ b/ubuntu/Dockerfile @@ -16,6 +16,7 @@ RUN set -x \ && apt-get dist-upgrade -y \ && apt-get install -y --no-install-recommends git \ ca-certificates \ + iproute2 \ libpython2.7 \ libvirt0 \ libxml2 \