File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 1- FROM ubuntu:focal
1+ FROM ubuntu:noble
22
33RUN apt-get update
44
55# disable interactive install
6- ENV DEBIAN_FRONTEND noninteractive
6+ ENV DEBIAN_FRONTEND= noninteractive
77
88# install developement tools
99RUN apt-get -y install cmake
10- RUN apt-get -y install g++
10+ # RUN apt-get -y install g++
11+ RUN apt-get -y install clang
1112RUN apt-get -y install libtiff-dev
1213
1314# install developement debugging tools
@@ -17,9 +18,10 @@ RUN apt-get -y install valgrind
1718WORKDIR /usr/src/openjph/
1819COPY . .
1920WORKDIR /usr/src/openjph/build
20- RUN cmake -DCMAKE_BUILD_TYPE=Release ../
21+ RUN rm -R * || true
22+ RUN cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_BUILD_TYPE=asan ../
2123RUN make
22- ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH: /usr/src/openjph/bin
24+ ENV LD_LIBRARY_PATH=/usr/src/openjph/bin
2325ENV PATH=$PATH:/usr/src/openjph/bin
2426
2527# finalize docker environment
You can’t perform that action at this time.
0 commit comments