Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eic_container
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
Container Registry
Model registry
Operate
Environments
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
containers
eic_container
Merge requests
!153
Resolve "Add afterburner"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Add afterburner"
79-add-afterburner
into
master
Overview
0
Commits
5
Pipelines
0
Changes
3
Merged
Dmitry Romanov
requested to merge
79-add-afterburner
into
master
3 years ago
Overview
0
Commits
5
Pipelines
0
Changes
3
Expand
Closes
#79 (closed)
Edited
3 years ago
by
Sylvester Joosten
0
0
Merge request reports
Viewing commit
90095208
Prev
Next
Show latest version
3 files
+
14
−
22
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
90095208
bugfix
· 90095208
Sylvester Joosten
authored
3 years ago
containers/jug/dev.Dockerfile
+
0
−
21
Options
@@ -219,17 +219,6 @@ COPY singularity.d /.singularity.d
ADD
https://dl.min.io/client/mc/release/linux-amd64/mc /usr/local/bin
RUN
chmod
a+x /usr/local/bin/mc
# setup cmake (c++ code lives in cpp directory)
cmake ../cpp
# to build all
cmake --build ../cpp --target all
# to install
cmake --build ../cpp --target install -- -j 8
k
## ========================================================================================
## STAGE 3
## Lean target image
@@ -261,16 +250,6 @@ ARG JUG_VERSION=1
ARG
AFTERBURNER_VERSION=main
RUN
echo
""
>>
/etc/jug_info
\
&&
echo
" - jug_dev:
${
JUG_VERSION
}
"
>>
/etc/jug_info
&& cd /tmp \
&& echo "INSTALLING AFTERBURNER" \
&& git clone -b ${AFTERBURNER_VERSION} --depth 1 \
https://eicweb.phy.anl.gov/monte_carlo/afterburner.git \
&& cmake -B build -S afterburner -j12 --target all -- install \
&& pushd afterburner \
&& echo " - afterburner: ${AFTERBURNER_VERSION}-$(git rev-parse HEAD)" \
>> jug_info \
&& popd \
&& rm -rf build afterburner
## make sure we have the entrypoints setup correctly
ENTRYPOINT
["/usr/local/sbin/entrypoint.sh"]
Loading