Update docker file of vfc-nfvo-lcm 55/9855/1
authorfujinhua <fu.jinhua@zte.com.cn>
Fri, 1 Sep 2017 05:15:40 +0000 (13:15 +0800)
committerfujinhua <fu.jinhua@zte.com.cn>
Fri, 1 Sep 2017 05:15:40 +0000 (13:15 +0800)
Add Python lib for base imgage

Change-Id: I4bbeda9b2439447bc50021df203b6984c0164cad
Issue-Id: VFC-219
Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
docker/Dockerfile

index b81aaac..0b6c42f 100755 (executable)
@@ -9,8 +9,16 @@ 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 && \