tsflags=nodocs meas that nothing that's marked as %doc gets installed. This includes among other things files in /usr/share/help, which are needed for displaying built-in documentation for GNOME apps. This commit drops the tsflags=nodocs the we inherited from the container base image as built-in yelp documentation is often exposed through the UI in various flatpak apps and dropping the help files breaks it.
13 lines
426 B
Docker
13 lines
426 B
Docker
FROM registry.fedoraproject.org/fedora:32
|
|
|
|
ENV NAME=flatpak-build-base
|
|
|
|
LABEL summary="Builder image for OSBS Flatpak builds" \
|
|
description="This image is used to install RPM packages into a buildroot \
|
|
when building a Flatpak image in OSBS." \
|
|
name="$NAME" \
|
|
com.redhat.component="$NAME" \
|
|
version=1
|
|
|
|
RUN rm /etc/rpm/macros.image-language-conf && \
|
|
sed -i -e '/tsflags=nodocs/d' /etc/dnf/dnf.conf
|