summaryrefslogtreecommitdiff
path: root/Dockerfile.build-fedora
diff options
context:
space:
mode:
authorArkadiusz Hiler <arkadiusz.hiler@intel.com>2019-10-30 10:07:38 +0200
committerArkadiusz Hiler <arkadiusz.hiler@intel.com>2019-10-30 14:50:57 +0200
commit03c1c6e4721b64b40e476423f7f956b026b4b03f (patch)
tree0cdd0f28e7fec305a15cd5ed42243e49785e60ef /Dockerfile.build-fedora
parent922f28ad8843251adc6760e7f4b867f1d2b5104f (diff)
Dockerfile: Use Fedora 31
Update to the newest version. Python 3 is now the default one, so we can drop the suffix from pip invocation and we have to install it explicitly. Cc: Petri Latvala <petri.latvala@intel.com> Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com> Reviewed-by: Petri Latvala <petri.latvala@intel.com>
Diffstat (limited to 'Dockerfile.build-fedora')
-rw-r--r--Dockerfile.build-fedora6
1 files changed, 5 insertions, 1 deletions
diff --git a/Dockerfile.build-fedora b/Dockerfile.build-fedora
index ce50376f..dc5d1b16 100644
--- a/Dockerfile.build-fedora
+++ b/Dockerfile.build-fedora
@@ -1,4 +1,4 @@
-FROM fedora:30
+FROM fedora:31
RUN dnf install -y \
gcc flex bison libatomic meson ninja-build xdotool \
@@ -37,10 +37,14 @@ RUN rm -fr /tmp/peg
# For compile-testing on clang
RUN dnf install -y clang
+# For test list comparison
+RUN dnf install -y diffutils
+
# For the helpers for the container with IGT inside
RUN dnf install -y findutils
# Meson version switching shenanigans
+RUN dnf install -y python3-pip
RUN curl -o "/usr/src/#1" "https://files.pythonhosted.org/packages/e8/ec/3e6a68c9e0fd4b4f4fb6877a3ccfb6f6e6d09f2b4fc87674e671bf64b7b8/{meson-0.47.2.tar.gz}"
RUN dnf clean all