Skip to content

Commit

Permalink
fix directories
Browse files Browse the repository at this point in the history
  • Loading branch information
stadie authored Dec 2, 2024
1 parent 17c0af7 commit a836980
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,17 @@ RUN conda clean --all
SHELL ["conda", "run", "-n", "geant", "/bin/bash", "-c"]

ARG VMC_DIR=$APPS_DIR/vmc
RUN mkdir $VMC_DIR
RUN git clone http://github.com/vmc-project/vmc.git $VMC_DIR/git_source && \
cd $VMC_DIR && \
cd $VMC_DIR/git_source && \
git checkout v2-0 && \
cd .. && \
mkdir build && \
cd build && \
cmake -DCMAKE_INSTALL_PREFIX=$VMC_DIR $VMC_DIR/git_source && \
make -j4 && \
make install && \
cd .. && \
rm -rf build git_source


0 comments on commit a836980

Please sign in to comment.