summaryrefslogtreecommitdiffstats
path: root/ms/command-executor
diff options
context:
space:
mode:
authorJozsef Csongvai <jozsef.csongvai@bell.ca>2020-06-03 09:04:28 -0400
committerYuriy Malakov <Yuriy.Malakov@att.com>2020-06-03 15:13:46 +0000
commit4538cca5ec767a6ec72bbdde6745b1bba18933b0 (patch)
treec4d1c1c173cf6f45d6e234ad42fdf5e3e3b0b240 /ms/command-executor
parenta37a0120b2aec155ff47ca6e4b6e7770bae5752a (diff)
Set explicit uid and gid in dockerfiles
This fixes permission issues with shared nfs volumes caused by mismatch in dynamically assigned gid and uid between containers. Issue-ID: CCSDK-2398 Signed-off-by: Jozsef Csongvai <jozsef.csongvai@bell.ca> Change-Id: Ie47873c98211b280490ee7a6bcc60ceef49dd690 (cherry picked from commit 12ab1a900ad255ffec2f18530e85d9b196417e26)
Diffstat (limited to 'ms/command-executor')
-rw-r--r--ms/command-executor/src/main/docker/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/ms/command-executor/src/main/docker/Dockerfile b/ms/command-executor/src/main/docker/Dockerfile
index e91265b56..1e5d4cbb8 100644
--- a/ms/command-executor/src/main/docker/Dockerfile
+++ b/ms/command-executor/src/main/docker/Dockerfile
@@ -5,7 +5,7 @@ RUN python -m pip install --upgrade pip
RUN pip install grpcio==${GRPC_PYTHON_VERSION} grpcio-tools==${GRPC_PYTHON_VERSION}
RUN pip install virtualenv==16.7.9
-RUN groupadd -r onap && useradd -r -g onap onap
+RUN groupadd -r -g 1000 onap && useradd -r -u 1000 -g onap onap
COPY start.sh /opt/app/onap/start.sh
RUN chmod u+x /opt/app/onap/start.sh