Skip to content

Commit a818042

Browse files
committed
.
1 parent 496518b commit a818042

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/docker/ubuntu-20.04.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,5 @@ COPY third_party/requirements.txt /opt/umf/requirements.txt
6767
# Add a new (non-root) 'test_user'
6868
ENV USER test_user
6969
ENV USERPASS pass
70-
RUN useradd -m "${USER}" -g sudo -p "$(mkpasswd ${USERPASS})"
70+
RUN useradd -m -u 1001 "${USER}" -g sudo -p "$(mkpasswd ${USERPASS})"
7171
USER test_user

.github/docker/ubuntu-22.04.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,5 @@ RUN pip3 install --no-cache-dir -r /opt/umf/requirements.txt
6464
# Add a new (non-root) 'test_user'
6565
ENV USER test_user
6666
ENV USERPASS pass
67-
RUN useradd -m "${USER}" -g sudo -p "$(mkpasswd ${USERPASS})"
67+
RUN useradd -m -u 1001 "${USER}" -g sudo -p "$(mkpasswd ${USERPASS})"
6868
USER test_user

0 commit comments

Comments
 (0)