From 1edae0511c00ab17dfc3276bb785fa94905e1a52 Mon Sep 17 00:00:00 2001 From: Max Desiatov Date: Mon, 14 Sep 2020 17:59:52 +0100 Subject: [PATCH 1/2] Add graphviz in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 37d03d3b..4b27b183 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ RUN mkdir -p /build/lib && cp -R /usr/lib/swift/linux/*.so* /build/lib RUN make install prefix=/build FROM ubuntu:18.04 -RUN apt-get -qq update && apt-get install -y libatomic1 libxml2-dev libcurl4-openssl-dev && rm -r /var/lib/apt/lists/* +RUN apt-get -qq update && apt-get install -y graphviz libatomic1 libxml2-dev libcurl4-openssl-dev && rm -r /var/lib/apt/lists/* COPY --from=builder /build/bin/swift-doc /usr/bin COPY --from=builder /build/lib/* /usr/lib/ ENTRYPOINT ["swift-doc"] From afd7ce5412e7c1eaddae79210a73984a337e65ad Mon Sep 17 00:00:00 2001 From: Mattt Date: Fri, 18 Sep 2020 14:21:43 -0700 Subject: [PATCH 2/2] Add changelog entry for #180 --- Changelog.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 693e9ac6..e05f1d4b 100644 --- a/Changelog.md +++ b/Changelog.md @@ -9,9 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +- Fixed missing GraphViz dependency in Dockerfile. + #180 by @MaxDesiatov. - Fixed listing of function parameters, when generating CommonMark documentation. #170 by @domcorvasce. - - Fixed version number for swift-doc command. #159 by @mattt.