File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ FROM heltai/deal2lkit:debug-release
2+
3+ MAINTAINER luca.heltai@gmail.com
4+
5+ # pi-BEM master image
6+ RUN git clone https://github.com/mathLab/pi-BEM/ &&\
7+ mkdir pi-BEM/build && cd pi-BEM/build &&\
8+ cmake -DCMAKE_BUILD_TYPE=DebugRelease \
9+ -GNinja \
10+ ../ && \
11+ ninja -j4
12+
13+ # Need this for Travis!
14+ USER root
Original file line number Diff line number Diff line change 1+ FROM heltai/deal2lkit:debug
2+
3+ MAINTAINER luca.heltai@gmail.com
4+
5+ # pi-BEM master image
6+ RUN git clone https://github.com/mathLab/pi-BEM/ &&\
7+ mkdir pi-BEM/build && cd pi-BEM/build &&\
8+ cmake -DCMAKE_BUILD_TYPE=Debug \
9+ -GNinja \
10+ ../ && \
11+ ninja -j4
12+
13+ # Need this for Travis!
14+ USER root
Original file line number Diff line number Diff line change 1+ FROM heltai/deal2lkit:release
2+
3+ MAINTAINER luca.heltai@gmail.com
4+
5+ # pi-BEM master image
6+ RUN git clone https://github.com/mathLab/pi-BEM/ &&\
7+ mkdir pi-BEM/build && cd pi-BEM/build &&\
8+ cmake -DCMAKE_BUILD_TYPE=Release \
9+ -GNinja \
10+ ../ && \
11+ ninja -j4
12+
13+ # Need this for Travis!
14+ USER root
You can’t perform that action at this time.
0 commit comments