Update Dockerfile to Fedora 35 and GNOME 41

This commit is contained in:
Romain Vigier
2021-11-03 14:31:24 +01:00
parent fcbfd924a9
commit 8497e75f93
+4 -4
View File
@@ -1,12 +1,12 @@
# SPDX-FileCopyrightText: 2020, 2021 Romain Vigier <contact AT romainvigier.fr>
# SPDX-License-Identifier: GPL-3.0-or-later
FROM fedora:34
FROM fedora:35
# Build gnome-extensions
RUN dnf install --nodocs -y gcc git glib2-devel gnome-autoar-devel json-glib-devel meson \
RUN dnf install --setopt=install_weak_deps=False --nodocs -y gcc git glib2-devel gnome-autoar-devel json-glib-devel meson \
&& dnf clean all \
&& git clone --depth 1 --branch 40.0 https://gitlab.gnome.org/GNOME/gnome-shell.git /src/gnome-shell \
&& git clone --depth 1 --branch 41.0 https://gitlab.gnome.org/GNOME/gnome-shell.git /src/gnome-shell \
&& cd /src/gnome-shell/subprojects/extensions-tool \
&& ./generate-translations.sh \
&& meson builddir --prefix=/usr --buildtype=release -Dman=false -Dbash_completion=disabled \
@@ -15,5 +15,5 @@ RUN dnf install --nodocs -y gcc git glib2-devel gnome-autoar-devel json-glib-dev
&& dnf remove -y gcc git glib2-devel gnome-autoar-devel json-glib-devel meson
# Install runtime dependencies
RUN dnf install --nodocs -y findutils gettext gnome-autoar json-glib make gzip brotli \
RUN dnf install --setopt=install_weak_deps=False --nodocs -y findutils gettext gnome-autoar json-glib make gzip brotli \
&& dnf clean all