diff options
Diffstat (limited to 'tca-cdap-container')
-rw-r--r-- | tca-cdap-container/Dockerfile | 4 |
1 files changed, 3 insertions, 1 deletions
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 |