Skip to content

Commit cb9f8f2

Browse files
committed
update docker to install openexr library
1 parent 00d2335 commit cb9f8f2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:focal
1+
FROM ubuntu:noble
22

33
RUN apt-get update
44

@@ -9,14 +9,16 @@ ENV DEBIAN_FRONTEND noninteractive
99
RUN apt-get -y install cmake
1010
RUN apt-get -y install g++
1111
RUN apt-get -y install libtiff-dev
12+
RUN apt-get -y install openexr
1213

13-
# install developement debugging tools
14+
# install development debugging tools
1415
RUN apt-get -y install valgrind
1516

1617
# OpenJPH
1718
WORKDIR /usr/src/openjph/
1819
COPY . .
1920
WORKDIR /usr/src/openjph/build
21+
RUN rm -R * || true
2022
RUN cmake -DCMAKE_BUILD_TYPE=Release ../
2123
RUN make
2224
ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/src/openjph/bin

0 commit comments

Comments
 (0)