aboutsummaryrefslogtreecommitdiffstats
path: root/repo/jhenv_template/ubuntu/xenial/Dockerfile
diff options
context:
space:
mode:
authorYifei Xue <xueyifei@huawei.com>2016-11-02 18:09:35 +0800
committerYifei Xue <xueyifei@huawei.com>2016-11-17 15:24:46 +0800
commit35086233fdfb4163c589fc258229a931bb02df1a (patch)
tree7732c2e11fc4964ccaa65c74242386c4743a7edb /repo/jhenv_template/ubuntu/xenial/Dockerfile
parentb15421ac53b8f57011613e29505cd8c0275b5066 (diff)
Create make_repo directory and optimize the current repo making related script
JIRA: COMPASS-496 Change-Id: I662d996382d38a3e9d0de6598dabe403b9d51665 Signed-off-by: Yifei Xue <xueyifei@huawei.com>
Diffstat (limited to 'repo/jhenv_template/ubuntu/xenial/Dockerfile')
-rw-r--r--repo/jhenv_template/ubuntu/xenial/Dockerfile54
1 files changed, 54 insertions, 0 deletions
diff --git a/repo/jhenv_template/ubuntu/xenial/Dockerfile b/repo/jhenv_template/ubuntu/xenial/Dockerfile
new file mode 100644
index 00000000..6b9b517a
--- /dev/null
+++ b/repo/jhenv_template/ubuntu/xenial/Dockerfile
@@ -0,0 +1,54 @@
+FROM ubuntu:16.04
+MAINTAINER Yifei Xue <xueyifei@huawei.com>
+
+ADD ./cp_env.sh /cp_env.sh
+
+RUN apt-get update
+
+RUN apt-get install -y wget
+
+RUN apt-get install -y -d mkisofs bc curl ipmitool openvswitch-switch \
+git python-pip python-dev figlet \
+libxslt-dev libxml2-dev libvirt-dev \
+build-essential qemu-utils qemu-kvm libvirt-bin \
+virtinst libmysqld-dev \
+libssl-dev libffi-dev python-cffi
+
+#RUN wget -P /var/cache/apt/archives/ http://launchpadlibrarian.net/225838998/libffi6_3.1~rc1+r3.0.13-12ubuntu0.1_amd64.deb
+
+RUN mkdir jh_deb
+
+RUN cp /var/cache/apt/archives/*.deb jh_deb/
+
+RUN apt-get install -y reprepro
+
+RUN mkdir -p xenial-jh-ppa/conf
+
+RUN echo 'Codename: xenial\n\
+Components: main\n\
+Architectures: amd64\n'\
+>> xenial-jh-ppa/conf/distributions
+
+RUN reprepro -b xenial-jh-ppa includedeb xenial jh_deb/*.deb
+
+RUN tar -zcvf /jh-ppa-xenial.tar.gz ./xenial-jh-ppa
+
+RUN apt-get install -y python-pip
+
+RUN mkdir jh_pip
+
+RUN pip install --upgrade paramiko jinja2 PyYAML setuptools pycrypto pyasn1 \
+cryptography MarkupSafe idna six enum34 ipaddress cffi pycparser \
+virtualenv cheetah requests netaddr pbr oslo.config ansible -d jh_pip/
+
+RUN tar -zcvf jh_pip.tar.gz jh_pip/
+
+RUN mkdir jh_env_package
+
+RUN mv *.tar.gz jh_env_package/
+
+RUN tar -zcvf jh_env_xenial.tar.gz jh_env_package/
+
+RUN chmod +x /cp_env.sh
+
+CMD ["/cp_env.sh"]