Skip to content

Commit

Permalink
update docker to install openexr library
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldsmith committed Oct 27, 2024
1 parent 00d2335 commit cb9f8f2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:focal
FROM ubuntu:noble

RUN apt-get update

Expand All @@ -9,14 +9,16 @@ ENV DEBIAN_FRONTEND noninteractive
RUN apt-get -y install cmake
RUN apt-get -y install g++
RUN apt-get -y install libtiff-dev
RUN apt-get -y install openexr

# install developement debugging tools
# install development debugging tools
RUN apt-get -y install valgrind

# OpenJPH
WORKDIR /usr/src/openjph/
COPY . .
WORKDIR /usr/src/openjph/build
RUN rm -R * || true
RUN cmake -DCMAKE_BUILD_TYPE=Release ../
RUN make
ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/src/openjph/bin
Expand Down

0 comments on commit cb9f8f2

Please sign in to comment.