Skip to content

Commit

Permalink
manually install vtk 9.3.1 to workaround issue in Ububtu version 9.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sloriot committed Oct 8, 2024
1 parent 668f1c0 commit 46b67d2
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,18 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
libqt6svg6-dev \
libqt6websockets6-dev

#install vtk 9.3 to work around an issue in vtk 9.3.1
wget https://www.vtk.org/files/release/9.3/VTK-9.3.1.tar.gz \
&& cd VTK-9.3.1 \
&& mkdir build \
&& cd build/ \
&& cmake -DCMAKE_BUILD_TYPE=Release .. \
&& make -j6 \
&& make install \
&& cd ../.. \
&& rm -rf VTK-9.3.1 \
&& export VTK_DIR=/usr/local/lib/cmake/vtk-9.3

RUN git clone https://github.com/STORM-IRIT/OpenGR.git --depth 1 \
&& cd ./OpenGR \
&& mkdir build \
Expand Down

0 comments on commit 46b67d2

Please sign in to comment.