summaryrefslogtreecommitdiff
path: root/.gitlab-ci/debian-stable.Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab-ci/debian-stable.Dockerfile')
-rw-r--r--.gitlab-ci/debian-stable.Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci/debian-stable.Dockerfile b/.gitlab-ci/debian-stable.Dockerfile
index bde2607..23c8318 100644
--- a/.gitlab-ci/debian-stable.Dockerfile
+++ b/.gitlab-ci/debian-stable.Dockerfile
@@ -32,6 +32,8 @@ RUN apt-get update -qq && apt-get install --no-install-recommends -qq -y \
# Locale for our build
RUN locale-gen C.UTF-8 && /usr/sbin/update-locale LANG=C.UTF-8
+RUN pip3 install meson==0.52
+
ARG HOST_USER_ID=5555
ENV HOST_USER_ID ${HOST_USER_ID}
RUN useradd -u $HOST_USER_ID -ms /bin/bash user
@@ -39,6 +41,4 @@ RUN useradd -u $HOST_USER_ID -ms /bin/bash user
USER user
WORKDIR /home/user
-RUN pip3 install --user meson==0.52
-
ENV LANG=C.UTF-8 LANGUAGE=C.UTF-8 LC_ALL=C.UTF-8