Optimize docker file of VFC-vnflcm 78/103578/1
authoryangyan <yangyanyj@chinamobile.com>
Thu, 12 Mar 2020 08:53:44 +0000 (16:53 +0800)
committeryangyan <yangyanyj@chinamobile.com>
Thu, 12 Mar 2020 08:53:50 +0000 (16:53 +0800)
Change-Id: I350a7ea3d2ce643156bbad0047d865f35b49155f
Issue-ID: VFC-1647
Signed-off-by: yangyan <yangyanyj@chinamobile.com>
lcm/docker/docker-entrypoint.sh
lcm/docker/docker-env-conf.sh

index 4ba0757..9b01804 100755 (executable)
@@ -1,7 +1,5 @@
 #!/bin/bash
 
-find  /service -name '*.sh'|xargs chmod a+x
-
 if [ -z "$SERVICE_IP" ]; then
     export SERVICE_IP=`hostname -i`
 fi
index 8eb40c0..4ae228b 100755 (executable)
@@ -13,26 +13,23 @@ install_sf(){
     wait
     pip install --upgrade setuptools pip
     pip install --no-cache-dir --pre -r  /service/vfc/gvnfm/vnflcm/lcm/requirements.txt
+    find  /service -name '*.sh'|xargs chmod a+x
 }
 
 add_user(){
 
-    apk --no-cache add sudo
     addgroup -g 1000 -S onap
     adduser onap -D -G onap -u 1000
-    chmod u+w /etc/sudoers
-    sed -i '/User privilege/a\\onap    ALL=(ALL:ALL) NOPASSWD:ALL' /etc/sudoers
-    chmod u-x /etc/sudoers
-    sudo chown onap:onap -R /service
+    chown onap:onap -R /service
 }
 
 config_logdir(){
 
     if [ ! -d "/var/log/onap" ]; then
-       sudo mkdir /var/log/onap
+       mkdir /var/log/onap
     fi 
    
-    sudo chown onap:onap -R /var/log/onap
+    chown onap:onap -R /var/log/onap
     chmod g+s /var/log/onap
     
 }