diff options
author | 2016-11-24 08:47:48 +0000 | |
---|---|---|
committer | 2016-11-24 08:47:48 +0000 | |
commit | 36f5cffcf373a8a12677c8e406cd11c8d9ffe2bb (patch) | |
tree | a20455421b7bdf19890032ce4da74ceee3a46762 /build/jhenv_template/ubuntu/trusty | |
parent | 2446530c3230221d76877851012eb39e2a7c0360 (diff) | |
parent | 35086233fdfb4163c589fc258229a931bb02df1a (diff) |
Merge "Create make_repo directory and optimize the current repo making related script"
Diffstat (limited to 'build/jhenv_template/ubuntu/trusty')
-rw-r--r-- | build/jhenv_template/ubuntu/trusty/Dockerfile | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/build/jhenv_template/ubuntu/trusty/Dockerfile b/build/jhenv_template/ubuntu/trusty/Dockerfile deleted file mode 100644 index 83f488d2..00000000 --- a/build/jhenv_template/ubuntu/trusty/Dockerfile +++ /dev/null @@ -1,52 +0,0 @@ -FROM ubuntu:14.04.3 -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 trusty-jh-ppa/conf - -RUN echo 'Codename: trusty\n\ -Components: main\n\ -Architectures: amd64\n'\ ->> trusty-jh-ppa/conf/distributions - -RUN reprepro -b trusty-jh-ppa includedeb trusty jh_deb/*.deb - -RUN tar -zcvf /trusty-jh-ppa.tar.gz ./trusty-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_trusty_pip.tar.gz jh_pip/ - -RUN mkdir -p /home/tmp - -RUN cp *.tar.gz /home/tmp - -RUN chmod +x /cp_env.sh - -CMD ["/cp_env.sh"] |