ci: Update the CI image for docs building

We don't use Pandoc any more, but we need a bunch of Python modules for
gi-docgen.
This commit is contained in:
Emmanuele Bassi 2021-02-15 16:43:10 +00:00
parent 4018417ceb
commit 787830d360
2 changed files with 7 additions and 2 deletions

View File

@ -26,7 +26,7 @@ variables:
MESON_TEST_TIMEOUT_MULTIPLIER: 3
FEDORA_IMAGE: "registry.gitlab.gnome.org/gnome/gtk/fedora:v28"
FLATPAK_IMAGE: "registry.gitlab.gnome.org/gnome/gnome-runtime-images/gnome:master"
DOCS_IMAGE: "registry.gitlab.gnome.org/gnome/gtk/fedora-docs:v25"
DOCS_IMAGE: "registry.gitlab.gnome.org/gnome/gtk/fedora-docs:v26"
.only-default:
only:

View File

@ -1,6 +1,11 @@
FROM registry.gitlab.gnome.org/gnome/gtk/fedora-base:v25
RUN dnf -y install pandoc
RUN dnf -y install \
python3-jinja2 \
python3-markdown \
python3-pygments \
python3-toml \
python3-typogrify
ARG HOST_USER_ID=5555
ENV HOST_USER_ID ${HOST_USER_ID}