-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding rocky8 and rocky9 cuda images
- Loading branch information
Showing
3 changed files
with
28 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
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,8 @@ | ||
#### Create a "developer" base for Rocky 8 | ||
# Why Rocky. NVIDIA uses Rocky 8 as the base image | ||
# This is mostly meant as a image for grid computing | ||
|
||
FROM rockylinux:8 as base-devel | ||
ARG BASE_IMAGE=rockylinux:8 | ||
FROM ${BASE_IMAGE} as base-devel | ||
|
||
MAINTAINER IceCube <[email protected]> | ||
|
||
|
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,8 @@ | ||
#### Create a "developer" base for Rocky 9 | ||
# Why Rocky. NVIDIA uses Rocky 8 as the base image | ||
# This is mostly meant as a image for grid computing | ||
|
||
FROM rockylinux:9 as base-devel | ||
ARG BASE_IMAGE=rockylinux:9 | ||
FROM ${BASE_IMAGE} as base-devel | ||
|
||
MAINTAINER IceCube <[email protected]> | ||
|
||
|