summaryrefslogtreecommitdiff
path: root/.gitlab-ci/fedora-latest.Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab-ci/fedora-latest.Dockerfile')
-rw-r--r--.gitlab-ci/fedora-latest.Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci/fedora-latest.Dockerfile b/.gitlab-ci/fedora-latest.Dockerfile
index b257596..ca694d2 100644
--- a/.gitlab-ci/fedora-latest.Dockerfile
+++ b/.gitlab-ci/fedora-latest.Dockerfile
@@ -1,4 +1,4 @@
-FROM fedora:31
+FROM fedora:latest
RUN dnf -y install \
at-spi2-atk-devel \
@@ -26,6 +26,8 @@ RUN dnf -y install \
xorg-x11-server-Xvfb \
&& dnf clean all
+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
@@ -33,6 +35,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.utf8