-
Notifications
You must be signed in to change notification settings - Fork 77
/
Dockerfile_openexr3
57 lines (45 loc) · 1.12 KB
/
Dockerfile_openexr3
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
FROM ubuntu:focal
RUN apt-get update
# disable interactive install
ENV DEBIAN_FRONTEND noninteractive
# install developement tools
RUN apt-get -y install cmake
RUN apt-get -y install g++
RUN apt-get -y install git
# install developement debugging tools
RUN apt-get -y install valgrind
# install CTL dependencies
#RUN apt-get -y install libilmbase-dev
#RUN apt-get -y install libopenexr-dev
#RUN apt-get -y install zlib1g-dev
WORKDIR /usr/src/
RUN git clone https://github.com/madler/zlib.git
WORKDIR /usr/src/zlib/build
RUN cmake ..
RUN make
RUN make install
WORKDIR /usr/src/
RUN git clone https://github.com/AcademySoftwareFoundation/Imath.git
WORKDIR /usr/src/Imath/build
RUN cmake ..
RUN make
RUN make install
WORKDIR /usr/src/
RUN git clone https://github.com/AcademySoftwareFoundation/openexr.git
WORKDIR /usr/src/openexr
RUN git checkout RB-3.1
WORKDIR /usr/src/openexr/build
RUN cmake ..
RUN make
RUN make install
RUN apt-get -y install libtiff-dev
# build CTL
WORKDIR /usr/src/CTL
COPY . .
WORKDIR /usr/src/CTL/build
RUN rm -R * || true
RUN cmake ..
RUN make
RUN make install
# finalize docker environment
WORKDIR /usr/src/CTL