We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00d2335 commit cb9f8f2Copy full SHA for cb9f8f2
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM ubuntu:focal
+FROM ubuntu:noble
2
3
RUN apt-get update
4
@@ -9,14 +9,16 @@ ENV DEBIAN_FRONTEND noninteractive
9
RUN apt-get -y install cmake
10
RUN apt-get -y install g++
11
RUN apt-get -y install libtiff-dev
12
+RUN apt-get -y install openexr
13
-# install developement debugging tools
14
+# install development debugging tools
15
RUN apt-get -y install valgrind
16
17
# OpenJPH
18
WORKDIR /usr/src/openjph/
19
COPY . .
20
WORKDIR /usr/src/openjph/build
21
+RUN rm -R * || true
22
RUN cmake -DCMAKE_BUILD_TYPE=Release ../
23
RUN make
24
ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/src/openjph/bin
0 commit comments