diff options
author | Justin chi <chigang@huawei.com> | 2017-01-24 08:50:35 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-01-24 08:50:35 +0000 |
commit | d001a27936a5d55cda2d8ca0849f30a8bd1c0b3d (patch) | |
tree | a4a87d67dbb248d3ea2034adfe04dea79378df7f /repo/pip/Dockerfile | |
parent | e5d3ebef36c73a8bcbad3d0236bdb663809033ea (diff) | |
parent | 6f279a7362504418cfcc453e11b3a9c2d458a2ea (diff) |
Merge "Adjust make repo"
Diffstat (limited to 'repo/pip/Dockerfile')
-rw-r--r-- | repo/pip/Dockerfile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/repo/pip/Dockerfile b/repo/pip/Dockerfile new file mode 100644 index 00000000..e8fed1ba --- /dev/null +++ b/repo/pip/Dockerfile @@ -0,0 +1,36 @@ +FROM ubuntu:16.04 +MAINTAINER Yifei Xue <xueyifei@huawei.com> + +ADD ./code_url.conf /code_url.conf + +RUN chmod +x code_url.conf + +ADD ./make_pip.sh /make_pip.sh + +RUN chmod +x make_pip.sh + +ADD ./make_pip_wheel.sh /make_pip_wheel.sh + +RUN chmod +x make_pip_wheel.sh + +ADD ./cp_pip.sh /cp_pip.sh + +RUN chmod +x cp_pip.sh + +RUN apt-get update + +RUN apt-get install -y git python-pip + +RUN apt-get install -y libssl-dev libffi-dev + +RUN mkdir -p /home/tmp + +RUN mkdir -p /pip-openstack + +RUN /make_pip.sh + +RUN /make_pip_wheel.sh + +RUN tar -zcvf pip-openstack.tar.gz /pip-openstack + +CMD ["/cp_pip.sh"] |