Skip to content

Commit

Permalink
fixes ampas#86, build openexr/ilmbase v.2.5 from source
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldsmith committed Jul 20, 2022
1 parent c5218eb commit a6b077b
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,21 @@ ENV DEBIAN_FRONTEND noninteractive
RUN apt-get -y install cmake
RUN apt-get -y install g++
RUN apt-get -y install valgrind
RUN apt-get -y install git

# install CTL dependencies
RUN apt-get -y install libilmbase-dev
RUN apt-get -y install libopenexr-dev
#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/AcademySoftwareFoundation/openexr.git
WORKDIR /usr/src/openexr
RUN git checkout RB-2.5
WORKDIR /usr/src/openexr/build
RUN cmake ..
RUN make
RUN make install

RUN apt-get -y install libtiff-dev

# install utilities for convenience, not needed for CTL
Expand Down

0 comments on commit a6b077b

Please sign in to comment.