diff options
author | ying.yunlong <ying.yunlong@zte.com.cn> | 2017-09-06 13:05:18 +0800 |
---|---|---|
committer | ying.yunlong <ying.yunlong@zte.com.cn> | 2017-09-06 13:17:56 +0800 |
commit | 2462d721ec51a81be720feb4633546e7b504d310 (patch) | |
tree | 9635b76df6ad7fac4fa14a765cc18fce2ed2f46a /res/docker/instance_init.sh | |
parent | 3faa972ed076863ffd179895970f2b97ecde0fe1 (diff) |
Update gvnfm vnfres dockerfile
Move python requirements install to dockerfile.
Change-Id: I81137109bc263a4a875968ebc01cf3c5ff3e0bfa
Issue-ID: VFC-292
Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
Diffstat (limited to 'res/docker/instance_init.sh')
-rw-r--r-- | res/docker/instance_init.sh | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/res/docker/instance_init.sh b/res/docker/instance_init.sh index fd7c60f..1986369 100644 --- a/res/docker/instance_init.sh +++ b/res/docker/instance_init.sh @@ -1,22 +1,12 @@ #!/bin/bash -function install_python_libs { - cd /service/vfc/gvnfm/vnfres/res/ - pip install -r requirements.txt -} - function start_redis_server { redis-server & } function start_mysql { - su mysql -c /usr/bin/mysqld_safe & service mysql start - # Wait for mysql to initialize; Set mysql root password - for i in {1..10}; do - sleep $i - bash /usr/bin/mysqladmin -u root password $MYSQL_ROOT_PASSWORD &> /dev/null && break - done + sleep 1 } function create_database { @@ -25,7 +15,6 @@ function create_database { cd /service } -install_python_libs start_redis_server start_mysql create_database |