diff options
author | Devan Carpenter <devan@taler.net> | 2023-09-06 21:19:46 -0400 |
---|---|---|
committer | Devan Carpenter <devan@taler.net> | 2023-09-08 22:25:34 -0400 |
commit | 70e8815fe89fdea8bf75977b7dff2faeea71adbd (patch) | |
tree | bd578e15247338003254b747fea31d492da5a195 | |
parent | 31708511d239c711058516c34c37ed0ce3bda715 (diff) |
ci: add docs dependencies to container environment
-rw-r--r-- | ci/Containerfile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ci/Containerfile b/ci/Containerfile index 3cc99cb77..720d28853 100644 --- a/ci/Containerfile +++ b/ci/Containerfile @@ -7,7 +7,6 @@ RUN apt-get update -yqq && \ autoconf \ autopoint \ curl \ - doxygen \ git \ jq \ libcurl4-gnutls-dev \ @@ -36,6 +35,11 @@ RUN apt-get install -yqq \ debhelper-compat \ devscripts +# Documentation dependencies +RUN apt-get install -yqq \ + doxygen \ + graphviz + # Install Taler (and friends) packages RUN curl -sS https://deb.taler.net/apt-nightly/taler-bookworm-ci.sources \ | tee /etc/apt/sources.list.d/taler-bookworm-ci.sources |