From 52469eca21ca0245745cadc9e34862cbefd7c013 Mon Sep 17 00:00:00 2001 From: Vijay Venkatesh Kumar Date: Fri, 9 Aug 2019 18:25:17 +0000 Subject: rollback non-root userchange Change-Id: I4e58ccebda28a4e38cdacb8105651f9cc20726e0 Signed-off-by: Vijay Venkatesh Kumar Issue-ID: DCAEGEN2-1665 Issue-ID: DCAEGEN2-1559 --- tca-cdap-container/Dockerfile | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/tca-cdap-container/Dockerfile b/tca-cdap-container/Dockerfile index 36366b4..18f9a85 100644 --- a/tca-cdap-container/Dockerfile +++ b/tca-cdap-container/Dockerfile @@ -16,15 +16,9 @@ FROM caskdata/cdap-standalone:4.1.2 -ARG USER_GROUP=tca-cdap-group -ARG NON_ROOT_USER=tca-cdap - -#Add a new user and group to allow container to be run as non-root -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 chmod -R 777 /opt/tca/* -RUN chmod 755 /opt/tca/get-tca.sh +RUN /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,6 +33,4 @@ RUN chmod 755 /opt/tca/mr-watchdog.sh EXPOSE 11011 EXPOSE 11015 -USER ${NON_ROOT_USER}:${USER_GROUP} - ENTRYPOINT /opt/tca/restart.sh -- cgit 1.2.3-korg