diff --git a/centos/Dockerfile b/centos/Dockerfile index a2ba70a..b3b087b 100644 --- a/centos/Dockerfile +++ b/centos/Dockerfile @@ -16,6 +16,7 @@ RUN set -x \ && yum install -y git \ libvirt0 \ libxml2 \ + openvswitch \ && git init /tmp/common/ \ && git --git-dir /tmp/common/.git fetch --depth 1 $SCRIPTS_REPO $SCRIPTS_REF \ && git --work-tree /tmp/common --git-dir /tmp/common/.git checkout FETCH_HEAD \ diff --git a/debian/Dockerfile b/debian/Dockerfile index 01a24cb..717c35c 100644 --- a/debian/Dockerfile +++ b/debian/Dockerfile @@ -18,6 +18,7 @@ RUN set -x \ ca-certificates \ libvirt0 \ libxml2 \ + openvswitch-switch \ && git init /tmp/common/ \ && git --git-dir /tmp/common/.git fetch --depth 1 $SCRIPTS_REPO $SCRIPTS_REF \ && git --work-tree /tmp/common --git-dir /tmp/common/.git checkout FETCH_HEAD \ diff --git a/ubuntu/Dockerfile b/ubuntu/Dockerfile index 352dd9a..8830751 100644 --- a/ubuntu/Dockerfile +++ b/ubuntu/Dockerfile @@ -18,6 +18,7 @@ RUN set -x \ ca-certificates \ libvirt0 \ libxml2 \ + openvswitch-switch \ && git init /tmp/common/ \ && git --git-dir /tmp/common/.git fetch --depth 1 $SCRIPTS_REPO $SCRIPTS_REF \ && git --work-tree /tmp/common --git-dir /tmp/common/.git checkout FETCH_HEAD \