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.Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci/debian-stable.Dockerfile b/.gitlab-ci/debian-stable.Dockerfile
index 75e2105..14ba8b7 100644
--- a/.gitlab-ci/debian-stable.Dockerfile
+++ b/.gitlab-ci/debian-stable.Dockerfile
@@ -1,4 +1,4 @@
-FROM debian:buster
+FROM debian:stable
RUN apt-get update -qq && apt-get install --no-install-recommends -qq -y \
ccache \
@@ -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.56.2
+
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.49.2
-
ENV LANG=C.UTF-8 LANGUAGE=C.UTF-8 LC_ALL=C.UTF-8