From 775b3a6915f3f417322ee265289076bb8ec73e29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Sat, 27 Mar 2021 11:38:59 +0100 Subject: [PATCH] Base: Update to Fedora 33 --- Dockerfile.base | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.base b/Dockerfile.base index 6c51842..a0b0a95 100644 --- a/Dockerfile.base +++ b/Dockerfile.base @@ -1,10 +1,10 @@ -FROM fedora:32 +FROM fedora:33 WORKDIR /root RUN dnf -y upgrade --setopt=install_weak_deps=False && \ dnf -y install --setopt=install_weak_deps=False \ bash bzip2 curl git make nano patch pkgconfig python-unversioned-command python3-pip unzip which xz && \ - pip install scons==4.0.1 + pip install scons==4.1.0 CMD /bin/bash