Skip to content

Commit

Permalink
Add base images for C7, C8, ALMA9 (#88)
Browse files Browse the repository at this point in the history
* add base images

* add to ci

* update
  • Loading branch information
paulgessinger authored Apr 25, 2023
1 parent d3ab20b commit 619f495
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ jobs:
- ubuntu2204
- ubuntu2204_clang
- ubuntu2204_cpp20
- centos7-base
- centos8-base
- alma9-base
steps:
- uses: actions/checkout@v3

Expand Down
8 changes: 8 additions & 0 deletions alma9-base/Dockerfile
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
8 changes: 8 additions & 0 deletions centos7-base/Dockerfile
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
8 changes: 8 additions & 0 deletions centos8-base/Dockerfile
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

0 comments on commit 619f495

Please sign in to comment.