aboutsummaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorfujinhua <fu.jinhua@zte.com.cn>2017-09-01 13:15:40 +0800
committerfujinhua <fu.jinhua@zte.com.cn>2017-09-01 13:15:40 +0800
commit8f82bb88330a9db6f27d53a6c822f58338cc7f68 (patch)
treeb6b0c92d8f497d24c2ad4a014f1cf63c2bc7e8a7 /docker
parent2636b73b5da8e1b44b226bc964894bbbd367d939 (diff)
Update docker file of vfc-nfvo-lcm
Add Python lib for base imgage Change-Id: I4bbeda9b2439447bc50021df203b6984c0164cad Issue-Id: VFC-219 Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
Diffstat (limited to 'docker')
-rwxr-xr-xdocker/Dockerfile8
1 files changed, 8 insertions, 0 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
index b81aaace..0b6c42fc 100755
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -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 && \