summaryrefslogtreecommitdiffstats
path: root/ms/py-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/py-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/py-executor')
-rw-r--r--ms/py-executor/docker/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/ms/py-executor/docker/Dockerfile b/ms/py-executor/docker/Dockerfile
index 638b09f39..eb43b7320 100644
--- a/ms/py-executor/docker/Dockerfile
+++ b/ms/py-executor/docker/Dockerfile
@@ -1,6 +1,6 @@
FROM python:3.7-slim
-RUN groupadd -r onap && useradd -r -g onap onap
+RUN groupadd -r -g 1000 onap && useradd -u 1000 -r -g onap onap
RUN mkdir -p /opt/app/onap/logs/ && touch /opt/app/onap/logs/application.log