summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2021-09-11 10:59:45 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2021-09-11 10:59:45 +0200
commit7835d1f007353883f5e4b7d75eaa6083dd5f1bc2 (patch)
tree196e9257db69565b22ce16b14623e80fab399dc4
parentc3d95d4777abfae59c75721245db5fc4d49e1ef8 (diff)
downloadbootstrap-7835d1f007353883f5e4b7d75eaa6083dd5f1bc2.tar
bootstrap-7835d1f007353883f5e4b7d75eaa6083dd5f1bc2.zip
Fix build user GID
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index f184678..9bf9e08 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -5,7 +5,7 @@ RUN apt-get update && apt-get -y install build-essential && apt-get clean
RUN mkdir /opt/sysroot
RUN mkdir /build
-RUN useradd -r -U -u 1000 -d /build -M build
+RUN useradd -U -u 1000 -d /build -M build
RUN chown build:build /build
USER build