forked from ampas/CTL
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add docker with openexr 3.3 (ampas#165)
- Loading branch information
1 parent
1266761
commit e4b5e70
Showing
2 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
FROM ubuntu:22.04 | ||
|
||
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 CTL dependencies | ||
RUN apt-get -y install libtiff-dev | ||
|
||
# install CTL dependecies - openexr | ||
WORKDIR /usr/src/ | ||
RUN git clone https://github.com/AcademySoftwareFoundation/openexr.git | ||
WORKDIR /usr/src/openexr | ||
RUN git checkout RB-3.3 | ||
WORKDIR /usr/src/openexr/build | ||
RUN cmake .. -DBUILD_TESTING=OFF -DOPENEXR_BUILD_TOOLS=OFF -DOPENEXR_INSTALL_EXAMPLES=OFF | ||
RUN make | ||
RUN make install | ||
|
||
# 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 | ||
|