-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5179d2b
commit e4f21d8
Showing
2 changed files
with
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
ARG ubuntu_version | ||
FROM ghcr.io/rse-radiuss/ubuntu:$ubuntu_version | ||
|
||
# Install gcc with spack | ||
ARG gcc_version | ||
ENV gcc_version=$gcc_version | ||
|
||
RUN spack install gcc@${gcc_version} |
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,20 @@ | ||
dockerbuild: | ||
build_args: | ||
gcc_version: | ||
key: gcc | ||
versions: | ||
- "4.9.3" | ||
_ "7.3.0" | ||
_ "8.1.0" | ||
_ "9.4.0" | ||
_ "10.3.0" | ||
_ "11.2.0" | ||
|
||
# Look for ubuntu versions for our base builds | ||
ubuntu_version: | ||
key: ubuntu | ||
name: ghcr.io/rse-radiuss/ubuntu | ||
type: container | ||
startat: "20.04" | ||
filter: | ||
- "^[0-9]+[.]04$" |