drm_hwcomposer: Fix dockerfile
Host and container user IDs must be the same to avoid permission issues.
Fixes: 87b716c07097 ("drm_hwcomposer: CI: Update runner os to ubuntu 23.04")
Signed-off-by: Roman Stratiienko <r.stratiienko@gmail.com>
diff --git a/.ci/Dockerfile b/.ci/Dockerfile
index d8672c5..2158d7a 100644
--- a/.ci/Dockerfile
+++ b/.ci/Dockerfile
@@ -11,11 +11,15 @@
python3-mako python3-jinja2 python3-ply python3-yaml
ENV RUN_USER user
-ENV RUN_UID 1001
+ENV RUN_UID 1000
ENV USER_HOME /home/${RUN_USER}
RUN mkdir -pv ${USER_HOME}
+
+# Delete default user
+RUN userdel -r ubuntu
+
# Create new user
RUN adduser \
--gecos 'Build User' \