Skip to content

Commit

Permalink
Fixing the group of the user
Browse files Browse the repository at this point in the history
  • Loading branch information
tesonep committed Jul 25, 2021
1 parent da4a254 commit 896f46c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docker/debian10-armv7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ RUN set -eu; \
automake \
; \
apt-get clean; \
useradd --uid 7431 --gid 100 --home-dir /opt/pharo --no-create-home --no-user-group pharo; \
addgroup --gid 1000 ci; \
useradd --uid 7431 --gid 1000 --home-dir /opt/pharo --no-create-home --no-user-group pharo; \
chown 7431:100 /opt/pharo -R; \
chmod 755 /opt/pharo -R; \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*; \
Expand Down
3 changes: 2 additions & 1 deletion docker/ubuntu-arm64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ RUN set -eu; \
automake \
; \
apt-get clean; \
useradd --uid 7431 --gid 100 --home-dir /opt/pharo --no-create-home --no-user-group pharo; \
addgroup --gid 1000 ci; \
useradd --uid 7431 --gid 1000 --home-dir /opt/pharo --no-create-home --no-user-group pharo; \
chown 7431:100 /opt/pharo -R; \
chmod 755 /opt/pharo -R; \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*; \
Expand Down

0 comments on commit 896f46c

Please sign in to comment.