Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Project Juggler
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
16
Issues
16
List
Boards
Labels
Service Desk
Milestones
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
EIC
Project Juggler
Commits
c909d07b
Commit
c909d07b
authored
Jan 09, 2021
by
Whitney Armstrong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Quick hack to get pythia in the container
modified: .containers/docker/Dockerfile
parent
00e290f4
Pipeline
#5629
failed with stages
in 9 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
.containers/docker/Dockerfile
.containers/docker/Dockerfile
+17
-0
.gitlab-ci.yml
.gitlab-ci.yml
+1
-1
No files found.
.containers/docker/Dockerfile
View file @
c909d07b
...
...
@@ -8,6 +8,23 @@ LABEL maintainer="Whitney Armstrong <warmstrong@anl.gov>" \
base="eic_container/eic" \
version="2.2.2"
RUN
cd
/tmp
\
&&
git clone https://gitlab.cern.ch/hepmc/HepMC3.git
\
&&
mkdir
HepMC3/build
&&
cd
HepMC3/build
\
&&
cmake ../.
-DHEPMC3_ENABLE_ROOTIO
=
ON
-DCMAKE_INSTALL_PREFIX
=
/usr/local
-DHEPMC3_BUILD_EXAMPLES
=
ON
\
&&
make
-j20
\
&&
make
install
\
&&
cd
/tmp
&&
rm
-rf
/tmp/HepMC3
RUN
cd
/tmp
\
&&
wget http://home.thep.lu.se/~torbjorn/pythia8/pythia8303.tgz
\
&&
tar
-zxf
pythia8303.tgz
&&
cd
pythia8303
\
&&
./configure
--prefix
=
/usr/local
--enable-shared
--enable-64bit
--with-root
--with-hepmc3
\
&&
make
-j30
\
&&
make
install
\
&&
cd
/tmp
&&
rm
-rf
/tmp/pythia8303
RUN
cd
/tmp
\
&&
git clone https://eicweb.phy.anl.gov/EIC/NPDet.git
\
&&
mkdir
-p
NPDet/build
&&
cd
NPDet/build
\
...
...
.gitlab-ci.yml
View file @
c909d07b
image
:
eicweb.phy.anl.gov:4567/containers/eic_container/eic:
latest
image
:
eicweb.phy.anl.gov:4567/containers/eic_container/eic:
2.3.1
#default:
# artifacts:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment