From 1b2ff1e84db0efb6ae142c80320bfd65fc797bb6 Mon Sep 17 00:00:00 2001 From: lb584 <lb584@cam.ac.uk> Date: Wed, 28 Jun 2023 15:05:03 +0100 Subject: [PATCH] making the DOckerfile a template, people using it should make a copy and override the UID and GID variables for their machine --- configs/docker/build/Dockerfile_template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/docker/build/Dockerfile_template b/configs/docker/build/Dockerfile_template index 7d98620..50bfac3 100644 --- a/configs/docker/build/Dockerfile_template +++ b/configs/docker/build/Dockerfile_template @@ -39,7 +39,7 @@ ARG UID=1006 ARG GID=1008 RUN groupadd -g $GID $GNAME RUN useradd -m -u $UID -g $GID -o -s /bin/bash $UNAME -USER ewsmanager +USER $UNAME RUN echo $PYTHONPATH -- GitLab