-
Notifications
You must be signed in to change notification settings - Fork 12
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
John Eslick
authored
Jun 9, 2023
1 parent
595e77a
commit efb4af2
Showing
3 changed files
with
15 additions
and
1 deletion.
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,4 +1,4 @@ | ||
IDAES Binary Extensions Testing Platform | ||
========================================= | ||
|
||
This Docker container can be used to test IDAES binary extensions on CentOS 8. | ||
This Docker container can be used to test IDAES binary extensions on CentOS 7. |
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,9 @@ | ||
FROM rockylinux:9 | ||
|
||
RUN yum -y update; yum clean all | ||
RUN yum -y install lapack blas libgfortran libgomp git wget | ||
RUN mkdir repo | ||
RUN cd repo; \ | ||
if [ `uname -m` = "aarch64" ]; then wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-aarch64.sh -O ~/miniconda.sh; fi; \ | ||
if [ `uname -m` = "x86_64" ]; then wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.sh; fi; \ | ||
bash ~/miniconda.sh -b -p $HOME/miniconda |
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,5 @@ | ||
IDAES Binary Extensions Testing Platform | ||
========================================= | ||
|
||
This Docker container can be used to test IDAES binary extensions on Rocky | ||
Linux 9. |