From dd3872e799b1f24ffe16b863aebbde112f76547f Mon Sep 17 00:00:00 2001 From: Yifei Xue Date: Thu, 25 Aug 2016 02:51:37 +0800 Subject: Prepare the jump host offline JIRA: COMPASS-456 Change-Id: Iffc877a0fa4b361daa966cdcdca38c76e35d81ad Signed-off-by: Yifei Xue --- build/jhenv_template/ubuntu/xenial/Dockerfile | 52 +++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 build/jhenv_template/ubuntu/xenial/Dockerfile (limited to 'build/jhenv_template/ubuntu/xenial/Dockerfile') diff --git a/build/jhenv_template/ubuntu/xenial/Dockerfile b/build/jhenv_template/ubuntu/xenial/Dockerfile new file mode 100644 index 00000000..01462ee0 --- /dev/null +++ b/build/jhenv_template/ubuntu/xenial/Dockerfile @@ -0,0 +1,52 @@ +FROM ubuntu:16.04.3 +MAINTAINER Yifei Xue + +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 /xenial-jh-ppa.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 env_xenial_pip.tar.gz jh_pip/ + +RUN mkdir -p /home/tmp + +RUN cp *.tar.gz /home/tmp + +RUN chmod +x /cp_env.sh + +CMD ["/cp_exenial] -- cgit 1.2.3-korg