From 596a0eb83982a4a172f526219d3056ba5851ffd4 Mon Sep 17 00:00:00 2001 From: Stuart Axon Date: Fri, 5 Mar 2021 15:14:26 +0000 Subject: [PATCH] Add dependencies for sphinxcontrib-shoebot. sphinxcontrib-shoebot support. These dependencies allow installing pygobject and pycairo, a dependency of Shoebot. --- Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Dockerfile b/Dockerfile index 187747d..f46121d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -113,6 +113,15 @@ RUN apt-get -y install \ plantuml \ swig +# libgirepository1.0-dev: is to allow installing pygobject and pycairo which compile from source. +# +# gir1.2-pango-1.0: is used to render text to support sphinxcontrib-shoebot +# gir1.2-rsvg-2.0: is used to output SVGs to support sphinxcontrib-shoebot +RUN apt-get -y install \ + libgirepository1.0-dev \ + gir1.2-pango-1.0 \ + gir1.2-rsvg-2.0 + # Install Python tools/libs ENV RTD_VIRTUALENV_VERSION 16.7.9 RUN apt-get -y install \