From ee3b30ac4b2154f42987b77b8f775ec4c494b833 Mon Sep 17 00:00:00 2001 From: nikhila-aot Date: Thu, 5 Dec 2024 13:45:13 -0800 Subject: [PATCH] revert user id --- comsapi/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/comsapi/Dockerfile b/comsapi/Dockerfile index ca2819f2..25ff4efa 100644 --- a/comsapi/Dockerfile +++ b/comsapi/Dockerfile @@ -7,12 +7,12 @@ WORKDIR ${APP_ROOT} # NPM Permission Fix RUN mkdir -p /.npm -RUN chown -R 1005690000:0 /.npm +RUN chown -R 1001:0 /.npm # Install Application COPY . ${APP_ROOT} -RUN chown -R 1005690000:0 ${APP_ROOT} -USER 1005690000 +RUN chown -R 1001:0 ${APP_ROOT} +USER 1001 WORKDIR ${APP_ROOT}/app RUN npm ci --omit=dev