Skip to content

Commit

Permalink
Adding a dockerfile for a doxygen builder image (#11529)
Browse files Browse the repository at this point in the history
  • Loading branch information
andy31415 authored and pull[bot] committed Jun 28, 2022
1 parent 9189efc commit 1114295
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 0 deletions.
20 changes: 20 additions & 0 deletions integrations/docker/images/chip-build-doxygen/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
ARG VERSION=latest
FROM connectedhomeip/chip-build:${VERSION}

# Docker dependencies
RUN set -x \
&& apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -fy \
libclang1-9 \
libclang-cpp9 \
&& rm -rf /var/lib/apt/lists/ \
&& : # last line

# Latest version of doxygen
RUN set -x \
&& cd /opt \
&& wget https://www.doxygen.nl/files/doxygen-1.9.2.linux.bin.tar.gz \
&& tar xfvz doxygen-1.9.2.linux.bin.tar.gz \
&& rm doxygen-1.9.2.linux.bin.tar.gz \
&& ln -s /opt/doxygen-1.9.2/bin/doxygen /usr/bin/ \
&& : # last line
1 change: 1 addition & 0 deletions integrations/docker/images/chip-build-doxygen/build.sh
1 change: 1 addition & 0 deletions integrations/docker/images/chip-build-doxygen/run.sh
1 change: 1 addition & 0 deletions integrations/docker/images/chip-build-doxygen/version

0 comments on commit 1114295

Please sign in to comment.