Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Dockerfiles
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Aart Heijboer
Dockerfiles
Commits
5fb0e4a6
Commit
5fb0e4a6
authored
5 years ago
by
Vladimir Kulikovskiy
Browse files
Options
Downloads
Patches
Plain Diff
Update km3sim:4.10.05
parent
d206bf5b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
base/km3sim:4.10.05
+16
-1
16 additions, 1 deletion
base/km3sim:4.10.05
with
16 additions
and
1 deletion
base/km3sim:4.10.05
+
16
−
1
View file @
5fb0e4a6
...
...
@@ -15,4 +15,19 @@ FROM docker.km3net.de/base/centos-full:7
mkdir geant4.10.05_build && mkdir /usr/local/geant4.10.05_install && cd geant4.10.05_build && \
cmake -DCMAKE_INSTALL_PREFIX=/usr/local/geant4.10.05_install -DGEANT4_USE_GDML=ON -DGEANT4_INSTALL_DATA=ON -DXERCESC_INCLUDE_DIR=/usr/include/xercesc/ -DXERCESC_LIBRARY=/usr/lib64/ ../geant4.10.05 && \
make -j4 > make.log && make install > make_install.log && cd .. && rm -rf geant4.10.05_build geant4.10.05
RUN echo "export G4DIR=/usr/local/geant4.10.05_install" >> /etc/bashrc
\ No newline at end of file
RUN echo "export G4DIR=/usr/local/geant4.10.05_install" >> /etc/bashrc
# ROOT6
RUN export ROOT_VERSION=6.14.06 && \
source /etc/profile.d/python36.sh && \
cd /tmp && \
wget https://root.cern.ch/download/root_v$ROOT_VERSION.source.tar.gz && \
tar xvzf root_v$ROOT_VERSION.source.tar.gz && \
cd root-$ROOT_VERSION && \
mkdir obj && \
cd obj && cmake3 .. && \
make && \
cd .. && \
mv obj /opt/root-$ROOT_VERSION && \
rm -rf /tmp/root* && \
echo "cd /opt/root-$ROOT_VERSION && source bin/thisroot.sh && cd" >> /etc/profile.d/root_env.sh && cd
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment