Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
docker-images
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
Cedric Verstege
docker-images
Commits
7d620af4
Commit
7d620af4
authored
8 months ago
by
Cedric Verstege
Browse files
Options
Downloads
Patches
Plain Diff
Add CERN CentOS7 for GridJobs
parent
bbd43ec3
Branches
Branches containing commit
No related tags found
1 merge request
!1
Add CERN CentOS7 for GridJobs
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cc7-gridjob/Dockerfile
+39
-0
39 additions, 0 deletions
cc7-gridjob/Dockerfile
with
39 additions
and
0 deletions
cc7-gridjob/Dockerfile
0 → 100644
+
39
−
0
View file @
7d620af4
FROM
cern/cc7-base:latest
# CERN doesn't provide an EPEL mirror anymore
RUN
yum
-y
remove epel-release
RUN
yum
-y
update
&&
\
yum
-y
clean all
&&
rm
-rf
/var/cache
# Install epel from fedora archive
RUN
yum
-y
install
https://archives.fedoraproject.org/pub/archive/epel/7/x86_64/Packages/e/epel-release-7-14.noarch.rpm
&&
\
yum
-y
clean all
&&
rm
-rf
/var/cache
# Add repos
RUN
yum
-y
install
https://linuxsoft.cern.ch/wlcg/centos7/x86_64/wlcg-repo-1.0.0-1.el7.noarch.rpm
&&
\
yum-config-manager
--add-repo
https://repository.egi.eu/sw/production/cas/1/current/repo-files/egi-trustanchors.repo
&&
\
yum
-y
clean all
&&
rm
-rf
/var/cache
# Install software
RUN
yum
-y
groupinstall
'Development Tools'
&&
\
yum
-y
install
HEP_OSlibs
&&
\
yum clean all
&&
rm
-rf
/var/cache
# Add grid stuff
run
yum
-y
install
\
ca-policy-egi-core
\
ca-policy-lcg
\
gfal2-all
\
gfal2-util
\
python3-gfal2
\
python3-gfal2-util
\
globus-proxy-utils
\
globus-gass-copy-progs
\
voms-clients-cpp
\
wlcg-iam-lsc-cms
\
wlcg-iam-vomses-cms
\
wlcg-voms-cms
\
xrootd-client
\
&&
yum
-y
clean all
&&
rm
-rf
/var/cache
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