Dockerfile changes for non-root user 21/79221/2
authorPatrick Brady <patrick.brady@att.com>
Tue, 26 Feb 2019 20:36:31 +0000 (12:36 -0800)
committerPatrick Brady <patrick.brady@att.com>
Tue, 26 Feb 2019 20:38:18 +0000 (20:38 +0000)
Copy appc folders in as odl user instead of root
user and run install scripts as odl user.

Change-Id: Ia748e607c80aa5c030c68c7eb01a3c27a296a786
Signed-off-by: Patrick Brady <patrick.brady@att.com>
Issue-ID: APPC-1503

installation/appc/src/main/docker/Dockerfile

index c0b18fa..ab3e2f2 100644 (file)
@@ -28,16 +28,16 @@ MAINTAINER APP-C Team (appc@lists.openecomp.org)
 ENV APPC_CONFIG_DIR /opt/onap/appc/data/properties
 
 # Copy the opt folder to the container's /opt folder
-COPY opt /opt
+COPY --chown=odl:odl opt /opt
 
 #Copy the directory containing each features' install script
-COPY featureDir /opt/onap/appc/features
+COPY --chown=odl:odl featureDir /opt/onap/appc/features
 
 #Copy the directory containing a system folder and an etc folder in order
 #  to merge both of these with the opendaylight folders of the same names.
-COPY repoDir /opt/opendaylight
-
-
+COPY --chown=odl:odl repoDir /opt/opendaylight
+RUN chown -R odl:odl /opt
+USER odl
 RUN ln -s /opt/onap/appc /opt/appc
 
 #Start opendaylight and pre-install the appc features