Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hep-workloads
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
HEP-Benchmarks
hep-workloads
Merge requests
!266
Resolve
BMK-253
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve
BMK-253
chollowe/hep-workloads:qa
into
qa
Overview
0
Commits
4
Pipelines
1
Changes
2
Merged
Christopher Henry Hollowell
requested to merge
chollowe/hep-workloads:qa
into
qa
5 years ago
Overview
0
Commits
4
Pipelines
1
Changes
2
Expand
Attempt to resolve
BMK-253
by forcing Singularity 3.2.1 from the OSG repo.
0
0
Merge request reports
Compare
qa
qa (base)
and
latest version
latest version
859a2c94
4 commits,
5 years ago
2 files
+
8
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
build-executor/image/Dockerfile
+
8
−
4
Options
@@ -32,10 +32,14 @@ RUN sed -e 's@inet_interfaces = localhost@#inet_interfaces = localhost@' -e 's@i
# Add singularity software and configuration (BMK-77 and BMK-145)
# Merge here the singularity Dockerfile fragments developed by Chris Hollowell <hollowec@bnl.gov>
RUN
yum
install
-y
singularity-runtime
&&
yum clean all
RUN
sed
-i
-e
's/underlay = no/underlay = yes/g'
/etc/singularity/singularity.conf
RUN
sed
-i
-e
's/overlay = try/overlay = no/g'
/etc/singularity/singularity.conf
# Force a specific verison of Singularity for now to resolve BMK-253
#RUN yum install -y singularity-runtime && yum clean all
RUN
rpm
--import
https://repo.opensciencegrid.org/osg/3.4/RPM-GPG-KEY-OSG
RUN
yum
install
-y
https://repo.opensciencegrid.org/osg/3.4/el7/release/x86_64/singularity-3.2.1-1.1.osg34.el7.x86_64.rpm
# Not necessay in CC7 as OverlayFS is supported
#RUN sed -i -e 's/underlay = no/underlay = yes/g' /etc/singularity/singularity.conf
#RUN sed -i -e 's/overlay = try/overlay = no/g' /etc/singularity/singularity.conf
RUN
pip
install
dictdiffer pyyaml
# No ENTRYPOINT
Loading