diff options
author | vagrant <vagrant@kvm> | 2015-12-23 05:40:07 +0000 |
---|---|---|
committer | Ruijing Guo <ruijing.guo@intel.com> | 2015-12-23 05:43:34 +0000 |
commit | 9cc3728f94609422a9a7fb9795836594bacc4e4a (patch) | |
tree | 29d5339bb11824212fa9f86832f468e346d4fca6 | |
parent | b2243e01336f5c1c64587f7819e65ddaa6b82fa7 (diff) |
Fix inserting kernel module issue
Change-Id: Ia742955fdf106ebbc258a33a41172826c5de99a6
Signed-off-by: Ruijing Guo <ruijing.guo@intel.com>
Notes
Notes (review):
Code-Review+1: yuling <ling.y.yu@intel.com>
Code-Review+2: Ruijing <ruijing.guo@intel.com>
Workflow+1: Ruijing <ruijing.guo@intel.com>
Verified+2: Jenkins
Submitted-by: Jenkins
Submitted-at: Wed, 23 Dec 2015 05:54:57 +0000
Reviewed-on: https://review.openstack.org/260888
Project: openstack/fuel-plugin-ovs
Branch: refs/heads/master
-rw-r--r-- | ovs-nsh/Dockerfile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ovs-nsh/Dockerfile b/ovs-nsh/Dockerfile index ac936ba..23ece25 100644 --- a/ovs-nsh/Dockerfile +++ b/ovs-nsh/Dockerfile | |||
@@ -1,11 +1,15 @@ | |||
1 | #!/bin/bash | 1 | #!/bin/bash |
2 | 2 | ||
3 | FROM ubuntu:14.04.3 | 3 | FROM ubuntu:14.04.3 |
4 | |||
5 | RUN rm -rf /lib/modules | ||
4 | RUN apt-get update | 6 | RUN apt-get update |
5 | RUN apt-get install -y software-properties-common python-software-properties \ | 7 | RUN apt-get install -y software-properties-common python-software-properties \ |
6 | make python-setuptools python-all dpkg-dev debhelper \ | 8 | make python-setuptools python-all dpkg-dev debhelper \ |
7 | fuseiso git genisoimage bind9-host wget curl lintian tmux lxc iptables \ | 9 | fuseiso git genisoimage bind9-host wget curl lintian tmux lxc iptables \ |
8 | ca-certificates sudo apt-utils lsb-release libtool autoconf automake build-essential fakeroot libssl-dev graphviz dh-autoreconf python-qt4 python-twisted-conch python-zopeinterface linux-headers-`uname -r` | 10 | ca-certificates sudo apt-utils lsb-release libtool autoconf automake build-essential fakeroot libssl-dev graphviz dh-autoreconf python-qt4 python-twisted-conch python-zopeinterface linux-headers-3.13.0-71-generic |
11 | |||
12 | RUN ln -s /lib/modules/3.13.0-71-generic /lib/modules/`uname -r` | ||
9 | 13 | ||
10 | RUN apt-get install -y pkg-config unzip liblua5.2-dev libpcap-dev libedit-dev libncurses5-dev libncursesw5-dev | 14 | RUN apt-get install -y pkg-config unzip liblua5.2-dev libpcap-dev libedit-dev libncurses5-dev libncursesw5-dev |
11 | 15 | ||