aboutsummaryrefslogtreecommitdiffstats
path: root/repo/pip/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'repo/pip/Dockerfile')
-rw-r--r--repo/pip/Dockerfile36
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"]