From 58e95622312876470d2e0c2ae7e0383349db36bd Mon Sep 17 00:00:00 2001 From: jegadeeshbabu1 Date: Tue, 23 Jul 2019 12:07:29 +0530 Subject: Added command to give permissions Fix for permission denied issue Issue-ID: DCAEGEN2-1559 Change-Id: Ibb6c1c8c52340e769014d0695d71a57908dcf0ea Signed-off-by: jegadeeshbabu1 --- tca-cdap-container/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tca-cdap-container/Dockerfile b/tca-cdap-container/Dockerfile index e7ae748..36366b4 100644 --- a/tca-cdap-container/Dockerfile +++ b/tca-cdap-container/Dockerfile @@ -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 -- cgit 1.2.3-korg