Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Add graphviz in Dockerfile #180

Merged
merged 3 commits into from
Sep 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down