We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c09502 commit 20a8cf0Copy full SHA for 20a8cf0
doxygen/Dockerfile
@@ -10,7 +10,13 @@ FROM ubuntu:20.04
10
ENV DEBIAN_FRONTEND=noninteractive
11
12
RUN apt-get update && apt-get install -y \
13
- cmake make ninja-build \
+ curl make ninja-build \
14
git doxygen graphviz \
15
&& apt-get clean \
16
&& rm -rf /var/lib/apt/lists/*
17
+
18
+RUN curl -LO https://github.com/Kitware/CMake/releases/download/v3.21.3/cmake-3.21.3-linux-x86_64.tar.gz \
19
+ && tar xf cmake-3.21.3-linux-x86_64.tar.gz \
20
+ && mv cmake-3.21.3-linux-x86_64/bin/* /usr/bin/ \
21
+ && mv cmake-3.21.3-linux-x86_64/share/cmake-3.21 /usr/share/ \
22
+ && rm -rf cmake-3.21.3-linux-x86_64*
0 commit comments