From: Patrick Brady Date: Tue, 26 Feb 2019 20:36:31 +0000 (-0800) Subject: Dockerfile changes for non-root user X-Git-Tag: 1.6.2~36 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=appc%2Fdeployment.git;a=commitdiff_plain;h=95ef2ec2871013b21806fc00cd27f6483da82a56 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 --- 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