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 46463d7 commit 06bcea7Copy full SHA for 06bcea7
Dockerfile
@@ -21,3 +21,16 @@ RUN git clone http://github.com/vmc-project/vmc.git $VMC_DIR/git_source && \
21
rm -rf build git_source
22
23
24
+ARG VGM_DIR=$APPS_DIR/vgm
25
+RUN mkdir $VGM_DIR
26
+RUN git clone http://github.com/vmc-project/vgm.git $VGM_DIR/git_source && \
27
+ cd $VGM_DIR/git_source && \
28
+ git checkout v5-2 && \
29
+ cd .. && \
30
+ mkdir build && \
31
+ cd build && \
32
+ cmake -DCMAKE_INSTALL_PREFIX=$VGM_DIR -DWITH_EXAMPLES=OFF -DINSTALL_EXAMPLES=OFF $VGM_DIR/git_source && \
33
+ make -j4 && \
34
+ make install && \
35
36
+ rm -rf build git_source
0 commit comments