diff options
author | Guo Ruijing <ruijing.guo@intel.com> | 2016-05-03 09:22:42 +0800 |
---|---|---|
committer | Guo Ruijing <ruijing.guo@intel.com> | 2016-05-03 10:31:16 +0800 |
commit | fc3228bd6c2163081143e2231e0574faa9bcaad1 (patch) | |
tree | a44d48fe8b04121029523ee96a9bbb1936dd19d3 /fuel-plugin/Dockerfile | |
parent | bacb4acf4ed1a5b6481d613a6dc2e8c9ccff15db (diff) |
Create fuel kvm plugin
Upstream status: NA
In Brahmaputra release, KVM plugin functionality was bundled inside the
fuel-plugin-qemu. In order for easy maintenance, the KVM plugin functionality
would be separated from fuel-plugin-qemu and moved into an independent
fuel-plugin-kvm and keep the source code here starting from Colorado release.
Change-Id: Id89069234a4529cca40f1887e2d947378f928dd2
Signed-off-by: davidjchou <david.j.chou@intel.com>
Signed-off-by: Guo Ruijing <ruijing.guo@intel.com>
Diffstat (limited to 'fuel-plugin/Dockerfile')
-rw-r--r-- | fuel-plugin/Dockerfile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/fuel-plugin/Dockerfile b/fuel-plugin/Dockerfile new file mode 100644 index 000000000..9b3fd5cea --- /dev/null +++ b/fuel-plugin/Dockerfile @@ -0,0 +1,10 @@ +#!/bin/bash + +FROM ubuntu:14.04.3 +RUN apt-get update +RUN apt-get install -y git fakeroot build-essential ncurses-dev xz-utils kernel-package bc autoconf +RUN echo "ALL ALL=NOPASSWD: ALL" > /etc/sudoers.d/open-sudo +RUN chmod 0440 /etc/sudoers.d/open-sudo +ADD ./build_kvm.sh /root/build_kvm.sh +RUN chmod +x /root/build_kvm.sh +RUN /root/build_kvm.sh -c 00bbfcd8 -o 2f8932e8 |