File: Dockerfile_vite

package info (click to toggle)
eztrace 2.0%2Brepack-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,132 kB
  • sloc: ansic: 23,501; perl: 910; sh: 857; cpp: 771; makefile: 696; fortran: 327; f90: 320; python: 57
file content (11 lines) | stat: -rw-r--r-- 363 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
FROM eztrace/eztrace.mpich

# Install ViTE with OTF2 support
RUN apt install -y qtbase5-dev qt5-qmake qttools5-dev libqt5charts5-dev \
    libqt5svg5-dev libglm-dev libglew-dev

RUN git clone https://gitlab.inria.fr/solverstack/vite.git \
&& (cd vite \
   && cmake -DCMAKE_INSTALL_PREFIX=/usr/local -DVITE_ENABLE_OTF2=ON . \
   && make -j 4 \
   && make install)