From 95ef2ec2871013b21806fc00cd27f6483da82a56 Mon Sep 17 00:00:00 2001 From: Patrick Brady Date: Tue, 26 Feb 2019 12:36:31 -0800 Subject: [PATCH] Dockerfile changes for non-root user 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 Issue-ID: APPC-1503 --- installation/appc/src/main/docker/Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/installation/appc/src/main/docker/Dockerfile b/installation/appc/src/main/docker/Dockerfile index c0b18fa..ab3e2f2 100644 --- a/installation/appc/src/main/docker/Dockerfile +++ b/installation/appc/src/main/docker/Dockerfile @@ -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 -- 2.16.6