BG5 commited on
Commit
bd62bc2
·
1 Parent(s): 82804e3

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -5
Dockerfile CHANGED
@@ -23,11 +23,8 @@ WORKDIR ${BUILD_PREFIX}
23
 
24
  ADD docker/entrypoint.sh /entrypoint.sh
25
 
26
- RUN chmod +x /entrypoint.sh \
27
- && mkdir -p /home/noroot \
28
- && groupadd -r noroot \
29
- && useradd -u 1000 noroot -s /bin/bash -d /home/noroot noroot \
30
- && chown -R noroot:noroot /home/noroot ${BUILD_PREFIX} /usr/local/lib
31
 
32
  USER noroot
33
 
 
23
 
24
  ADD docker/entrypoint.sh /entrypoint.sh
25
 
26
+ RUN chmod +x /entrypoint.sh
27
+ RUN useradd -m -u 1000 noroot
 
 
 
28
 
29
  USER noroot
30