-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add base images for C7, C8, ALMA9 (#88)
* add base images * add to ci * update
- Loading branch information
1 parent
d3ab20b
commit 619f495
Showing
4 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM cern/alma9-base:latest | ||
|
||
LABEL description="CERN AlmaLinux 9" | ||
LABEL maintainer="Paul Gessinger <[email protected]>" | ||
LABEL version="1" | ||
|
||
RUN dnf install -y https://linuxsoft.cern.ch/wlcg/el9/x86_64/HEP_OSlibs-9.1.0-2.el9.x86_64.rpm \ | ||
&& dnf -y clean all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM cern/cc7-base:latest | ||
|
||
LABEL description="CERN CentOS 7" | ||
LABEL maintainer="Paul Gessinger <[email protected]>" | ||
LABEL version="1" | ||
|
||
RUN yum -y install https://linuxsoft.cern.ch/wlcg/centos7/x86_64/HEP_OSlibs-7.3.5-2.el7.cern.x86_64.rpm \ | ||
&& yum -y clean all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM cern/c8-base:latest | ||
|
||
LABEL description="CERN CentOS 8" | ||
LABEL maintainer="Paul Gessinger <[email protected]>" | ||
LABEL version="1" | ||
|
||
RUN dnf install -y https://linuxsoft.cern.ch/wlcg/centos8/x86_64/HEP_OSlibs-8.2.0-2.el8.x86_64.rpm \ | ||
&& dnf -y clean all |