-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathDockerfile
More file actions
36 lines (28 loc) · 752 Bytes
/
Dockerfile
File metadata and controls
36 lines (28 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
FROM ubuntu:24.04 AS itk-doxygen
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
cmake \
bison \
build-essential \
curl \
flex \
git \
ninja-build \
graphviz \
python3 \
perl \
texlive-bibtex-extra \
&& apt-get clean
RUN ln /usr/bin/dot /usr/sbin/dot
RUN git clone https://github.com/doxygen/doxygen.git && \
( cd doxygen && \
git checkout Release_1_13_2 && \
mkdir bld && cd bld && \
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release .. && \
ninja install) && \
rm -rf ./doxygen
RUN git config --global url."https://github.com/InsightSoftwareConsortium/".insteadOf "https://itk.org/"
COPY run.sh /tmp
#COPY patch /tmp/patch
WORKDIR /work
ENTRYPOINT ["/tmp/run.sh"]