Skip to content

Commit

Permalink
increase user uid to 10001
Browse files Browse the repository at this point in the history
  • Loading branch information
dignajar committed Jun 23, 2021
1 parent 7296234 commit 2c0b0ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ RUN pip install -r /tmp/requirements.txt --no-cache-dir

# Run as non-root
ENV USER scheduler
ENV UID 10000
ENV UID 10001
ENV GROUP scheduler
ENV GID 10000
ENV GID 10001
ENV HOME /home/$USER
RUN addgroup -g $GID -S $GROUP && adduser -u $UID -S $USER -G $GROUP

Expand Down

0 comments on commit 2c0b0ff

Please sign in to comment.