From 6766fb015dd6a4fa773bac4478a7a26c3476dcd7 Mon Sep 17 00:00:00 2001 From: Daniel Schiffner Date: Tue, 5 Jan 2021 16:01:37 +0100 Subject: [PATCH] Updating images --- Dockerfile-linux | 3 ++- Dockerfile-windows | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Dockerfile-linux b/Dockerfile-linux index 39a871b..7d739a7 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 3814173..d7c52b6 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 -- GitLab