Added command to give permissions 43/91843/1
authorjegadeeshbabu1 <jegabab1@in.ibm.com>
Tue, 23 Jul 2019 06:37:29 +0000 (12:07 +0530)
committerjegadeeshbabu1 <jegabab1@in.ibm.com>
Tue, 23 Jul 2019 06:38:24 +0000 (12:08 +0530)
Fix for permission denied issue

Issue-ID: DCAEGEN2-1559
Change-Id: Ibb6c1c8c52340e769014d0695d71a57908dcf0ea
Signed-off-by: jegadeeshbabu1 <jegabab1@in.ibm.com>
tca-cdap-container/Dockerfile

index e7ae748..36366b4 100644 (file)
@@ -23,7 +23,8 @@ ARG NON_ROOT_USER=tca-cdap
 RUN addgroup --system ${USER_GROUP} && adduser --system ${NON_ROOT_USER} --ingroup ${USER_GROUP}
 RUN apt-get update && apt-get install -y netcat jq iputils-ping wget vim curl
 COPY get-tca.sh /opt/tca/get-tca.sh
-RUN /opt/tca/get-tca.sh
+RUN chmod -R 777 /opt/tca/*
+RUN chmod 755 /opt/tca/get-tca.sh
 COPY tca_app_config.json /opt/tca/tca_app_config.json
 COPY tca_app_preferences.json /opt/tca/tca_app_preferences.json
 COPY restart.sh /opt/tca/restart.sh
@@ -39,4 +40,5 @@ EXPOSE 11011
 EXPOSE 11015
 
 USER ${NON_ROOT_USER}:${USER_GROUP}
+
 ENTRYPOINT /opt/tca/restart.sh