Skip to content
Snippets Groups Projects
Commit b7b0a742 authored by Whitney Armstrong's avatar Whitney Armstrong
Browse files

modified: containers/docker/Dockerfile

parent 72ef6375
No related branches found
No related tags found
No related merge requests found
......@@ -35,6 +35,21 @@ RUN cd /tmp \
&& make install \
&& cd /tmp && rm -rf /tmp/pythia8244
RUN apt-get update && apt-get remove -y libtbb-dev libtbb2 \
&& cd /tmp \
&& git clone https://eicweb.phy.anl.gov/eic_tools/DD4hep.git \
&& source /usr/local/bin/thisroot.sh \
&& source /usr/local/bin/geant4.sh \
&& mkdir -p DD4hep/build && cd DD4hep/build \
&& cmake ../. -DCMAKE_INSTALL_PREFIX=/usr/local \
-DCMAKE_CXX_STANDARD=17 \
-DDD4HEP_USE_GEANT4=ON \
-DDD4HEP_USE_HEPMC3=ON \
&& make -j30 && make -j4 install \
&& cd /tmp && rm -rf /tmp/DD4hep \
&& apt-get update && apt-get install -y libtbb-dev libtbb2 \
&& apt-get clean -y
RUN cd /tmp \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment