-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make consistent use of LABEL's for images and add "author" information
- Loading branch information
Showing
3 changed files
with
10 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
FROM rockylinux:8 | ||
|
||
# Add labels | ||
LABEL source=https://github.com/stfc/grid-workernode | ||
LABEL description="A specialised container image optimized for high-performance batch job execution in RAL's computing environment. \ | ||
LABEL org.opencontainers.image.source=https://github.com/stfc/grid-workernode | ||
LABEL [email protected] | ||
LABEL org.opencontainers.image.description="A specialised container image optimised for high-performance batch job execution in RAL's computing environment. \ | ||
It includes essential software, libraries, and dependencies, ensuring efficient, and scalable job processing, benefiting researchers and organisations." | ||
|
||
# Basic dependencies | ||
|
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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
FROM rockylinux:9 | ||
|
||
# Add labels | ||
LABEL source=https://github.com/stfc/grid-workernode | ||
LABEL description="A specialised container image optimized for high-performance batch job execution in RAL's computing environment. \ | ||
LABEL org.opencontainers.image.source=https://github.com/stfc/grid-workernode | ||
LABEL [email protected] | ||
LABEL org.opencontainers.image.description="A specialised container image optimised for high-performance batch job execution in RAL's computing environment. \ | ||
It includes essential software, libraries, and dependencies, ensuring efficient, and scalable job processing, benefiting researchers and organisations." | ||
|
||
# Basic dependencies | ||
|
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 |
---|---|---|
|
@@ -7,6 +7,10 @@ ARG CEPH_VERSION=14.2.22-0 | |
LABEL xrootd-ver=$XROOTD_VERSION | ||
LABEL xrdceph-ver=$XRDCEPH_VERSION | ||
LABEL ceph-ver=$CEPH_VERSION | ||
LABEL org.opencontainers.image.source=https://github.com/stfc/grid-workernode | ||
LABEL [email protected] | ||
LABEL org.opencontainers.image.description="A specialised container image optimised as a local XROOTD gateway in RAL's computing environment. \ | ||
It includes software for XROOTD along with libraries, and dependencies, ensuring efficient, and scalable data staging, benefiting researchers and organisations." | ||
|
||
# xrootd user - needs to be consistent with the host | ||
RUN groupadd --gid 65432 xrootd && \ | ||
|