dockerfile: Install glslc package

The update-image job fails currently because gtk4 needs glslc executable.
Let's install tha glslc package.
This commit is contained in:
Ondrej Holy 2024-01-31 08:03:07 +01:00
parent 94d2d80fd2
commit df12cb3474

View file

@ -37,6 +37,7 @@ RUN dnf builddep -y glib \
&& rm -rf glib
RUN dnf builddep -y gtk4 \
&& dnf install -y glslc \
&& dnf clean all \
&& git clone --depth 1 https://gitlab.gnome.org/GNOME/gtk.git \
&& cd gtk \