summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfujinhua <fu.jinhua@zte.com.cn>2017-09-01 13:17:31 +0800
committerfujinhua <fu.jinhua@zte.com.cn>2017-09-01 13:17:31 +0800
commit229be292116f30908dd3de5bd69dfb7c15b42a93 (patch)
tree4826f0a6d522adc82850a9ded7bd253f2684209d
parent5c398ea8c946d5a311270e7dda34d8876b86a707 (diff)
Update docker file of vfc-gvnfm-vnflcm
Add Python lib for base image Change-Id: I5d8602ceca35ad55089f9f9444a21c7c62c66912 Issue-Id: VFC-221 Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
-rwxr-xr-xlcm/docker/Dockerfile12
1 files changed, 11 insertions, 1 deletions
diff --git a/lcm/docker/Dockerfile b/lcm/docker/Dockerfile
index 3696eb85..e552304e 100755
--- a/lcm/docker/Dockerfile
+++ b/lcm/docker/Dockerfile
@@ -9,12 +9,22 @@ ENV https_proxy $HTTPS_PROXY
ENV MYSQL_ROOT_PASSWORD $MYSQL_ROOT_PASSWORD
RUN apt-get update && \
+ apt-get install -y python-devel && \
+ apt-get install -y python-virtualenv && \
+ apt-get install -y python-setuptools && \
apt-get install -y python-dev && \
apt-get install -y python-pip && \
+ apt-get install -y openssl-devel && \
+ apt-get install -y mysql-devel && \
+ apt-get install -y gcc && \
+ apt-get install -y libffi-devel && \
+ apt-get install -y redis && \
apt-get install -y libmysqlclient-dev && \
apt-get install -y redis-server && \
apt-get install -y mysql-server && \
- apt-get install -y mysql-client
+ apt-get install -y mysql-client && \
+ apt-get install -y wget && \
+ apt-get install -y unzip
ADD . /service
RUN cd /service