diff --git a/Dockerfile-linux b/Dockerfile-linux index 39a871bbc736e7e5781e8cdc8961eb70b7eefd60..7d739a7eb3f537dc50ea77db0f54d2ab830a5960 100644 --- a/Dockerfile-linux +++ b/Dockerfile-linux @@ -3,6 +3,7 @@ FROM gcc:10 USER root RUN apt update &&\ apt install -y -qq python3 python3-pip python3-setuptools python3-wheel ninja-build > /dev/null &&\ - pip3 install meson + pip3 install meson &&\ + groupadd -r meson && useradd --no-log-init -r -g meson meson USER meson diff --git a/Dockerfile-windows b/Dockerfile-windows index 381417392588fceac16bff9ae29644cc05bf7062..d7c52b6c6c6e7765c819e278d778c407979a9021 100644 --- a/Dockerfile-windows +++ b/Dockerfile-windows @@ -5,6 +5,7 @@ RUN apt update &&\ echo "deb http://ftp.fr.debian.org/debian testing main" >> /etc/apt/sources.list && \ apt update && \ apt install -y -qq python3 python3-pip python3-setuptools python3-wheel ninja-build > /dev/null &&\ - pip3 install meson + pip3 install meson &&\ + groupadd -r meson && useradd --no-log-init -r -g meson meson -USER meson +USER meson \ No newline at end of file